Commit 635b951d authored by Damien McKenna's avatar Damien McKenna Committed by Damien McKenna
Browse files

Issue #2994433 by DamienMcKenna, ChandeepKhosa, vishnukumar, Berdir, joakland,...

Issue #2994433 by DamienMcKenna, ChandeepKhosa, vishnukumar, Berdir, joakland, pdenooijer, benstjohn, muranod: Automatically parse URLs from image field tokens.
parent 1fa36538
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -13,6 +13,9 @@ Metatag 8.x-1.x-dev, xxxx-xx-xx
  should not return null.
#3166569 by munish.kumar, yogeshmpawar, Dom.: Add Facebook verification meta
  header.
#2994433 by DamienMcKenna, ChandeepKhosa, vishnukumar, Berdir, joakland,
  pdenooijer, benstjohn, muranod: Automatically parse URLs from image field
  tokens.


Metatag 8.x-1.14, 2020-08-11
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@ use Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
 * @MetatagTag(
 *   id = "twitter_cards_gallery_image0",
 *   label = @Translation("1st gallery image"),
 *   description = @Translation("A URL to the image representing the first photo in your gallery. This will be able to extract the URL from an image field."),
 *   description = @Translation("A URL to the image representing the first photo in your gallery."),
 *   name = "twitter:gallery:image0",
 *   group = "twitter_cards",
 *   weight = 200,
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@ use Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
 * @MetatagTag(
 *   id = "twitter_cards_gallery_image1",
 *   label = @Translation("2nd gallery image"),
 *   description = @Translation("A URL to the image representing the second photo in your gallery. This will be able to extract the URL from an image field."),
 *   description = @Translation("A URL to the image representing the second photo in your gallery."),
 *   name = "twitter:gallery:image1",
 *   group = "twitter_cards",
 *   weight = 201,
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@ use Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
 * @MetatagTag(
 *   id = "twitter_cards_gallery_image2",
 *   label = @Translation("3rd gallery image"),
 *   description = @Translation("A URL to the image representing the third photo in your gallery. This will be able to extract the URL from an image field."),
 *   description = @Translation("A URL to the image representing the third photo in your gallery."),
 *   name = "twitter:gallery:image2",
 *   group = "twitter_cards",
 *   weight = 202,
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@ use Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
 * @MetatagTag(
 *   id = "twitter_cards_gallery_image3",
 *   label = @Translation("4th gallery image"),
 *   description = @Translation("A URL to the image representing the fourth photo in your gallery. This will be able to extract the URL from an image field."),
 *   description = @Translation("A URL to the image representing the fourth photo in your gallery."),
 *   name = "twitter:gallery:image3",
 *   group = "twitter_cards",
 *   weight = 203,
Loading