defeceed2774d54acc9a227b9d6ecf132b683de2
[yaffs-website] / web / modules / contrib / metatag / src / Plugin / metatag / Tag / CanonicalUrl.php
1 <?php
2
3 namespace Drupal\metatag\Plugin\metatag\Tag;
4
5 /**
6  * Provides a plugin for the 'canonical' meta tag.
7  *
8  * @MetatagTag(
9  *   id = "canonical_url",
10  *   label = @Translation("Canonical URL"),
11  *   description = @Translation("Preferred page location or URL to help eliminate duplicate content for search engines."),
12  *   name = "canonical",
13  *   group = "advanced",
14  *   weight = 1,
15  *   type = "uri",
16  *   secure = FALSE,
17  *   multiple = FALSE
18  * )
19  */
20 class CanonicalUrl extends LinkRelBase {
21   // Nothing here yet. Just a placeholder class for a plugin.
22 }