Commit 0e260e39 authored by Damien McKenna's avatar Damien McKenna Committed by Damien McKenna
Browse files

Issue #3298081 by DamienMcKenna: Deprecate Google Plus meta tags.

parent 4c757a75
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
Metatag 8.x-1.x-dev, 2022-xx-xx
-------------------------------
#3299228 by DamienMcKenna: Refactor favicon meta tags.
#3298081 by DamienMcKenna: Deprecate Google Plus meta tags.


Metatag 8.x-1.21, 2022-07-16
+3 −6
Original line number Diff line number Diff line
@@ -31,9 +31,9 @@ The primary features include:
  revisioning of meta tag values added for individual entities.

* A large volume of meta tags available, covering commonly used tags, Open
  Graph tags, Twitter Cards tags, Dublin Core tags, Google+ tags, App Links
  tags, site verification tags and more; all but the basic meta tags are kept
  in separate submodules.
  Graph tags, Twitter Cards tags, Dublin Core tags, App Links tags, site
  verification tags and more; all but the basic meta tags are kept in separate
  submodules.

* Configuration can be added for individual paths using the Metatag Custom
  Routes submodule.
@@ -50,9 +50,6 @@ The primary features include:
* The Twitter Cards meta tags may be added by enabling the "Metatag: Twitter
  Cards" submodule.

* Certain meta tags used by Google+ may be added by enabling the "Metatag:
  Google+" submodule.

* Facebook's fb:app_id, fb:admins and fb:pages meta tags may be added by
  enabling the "Metatag: Facebook" submodule. These are useful for sites which
  are using Facebook widgets or are building custom integration with Facebook's
+1 −1
Original line number Diff line number Diff line
name: 'Metatag: Google Plus'
type: module
description: Provides support for Google's Plus meta tags.
description: Provides support for Google's Plus meta tags. Deprecated, will be removed in Metatag 2.0.0.
core_version_requirement: '^9'
package: SEO
dependencies:
+4 −0
Original line number Diff line number Diff line
@@ -13,6 +13,10 @@ use Drupal\metatag\Plugin\metatag\Group\GroupBase;
 *   description = @Translation("A set of meta tags specially for controlling the summaries displayed when content is shared on <a href=':plus'>Google Plus</a>.", arguments = { ":plus" = "https://plus.google.com/" }),
 *   weight = 4
 * )
 *
 * @deprecated in metatag:8.x-1.22 and is removed from metatag:2.0.0. No replacement is provided.
 *
 * @see https://www.drupal.org/project/metatag/issues/3065441
 */
class GooglePlus extends GroupBase {
  // Inherits everything from Base.
+4 −0
Original line number Diff line number Diff line
@@ -19,6 +19,10 @@ use Drupal\metatag\Plugin\metatag\Tag\MetaItempropBase;
 *   multiple = FALSE,
 *   trimmable = TRUE
 * )
 *
 * @deprecated in metatag:8.x-1.22 and is removed from metatag:2.0.0. No replacement is provided.
 *
 * @see https://www.drupal.org/project/metatag/issues/3065441
 */
class Description extends MetaItempropBase {
  // Nothing here yet. Just a placeholder class for a plugin.
Loading