d1f53e3adb9ffe1dedb6c93162a6ae8b94758ac5
[yaffs-website] / TwitterCardsPageUrl.php
1 <?php
2
3 namespace Drupal\metatag_twitter_cards\Plugin\metatag\Tag;
4
5 use Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
6
7 /**
8  * The Twitter Cards site's page url metatag.
9  *
10  * @MetatagTag(
11  *   id = "twitter_cards_page_url",
12  *   label = @Translation("Page URL"),
13  *   description = @Translation("The permalink / canonical URL of the current page."),
14  *   name = "twitter:url",
15  *   group = "twitter_cards",
16  *   weight = 6,
17  *   type = "uri",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class TwitterCardsPageUrl extends MetaNameBase {
23 }