65d340ce09ab04971a50cf45c63540a2c7893679
[yaffs-website] / web / modules / contrib / metatag / metatag_favicons / src / Plugin / metatag / Group / Favicons.php
1 <?php
2
3 namespace Drupal\metatag_favicons\Plugin\metatag\Group;
4
5 use Drupal\metatag\Plugin\metatag\Group\GroupBase;
6
7 /**
8  * Provides a plugin for the 'Favicons & touch icons' meta tag group.
9  *
10  * @MetatagGroup(
11  *   id = "favicons",
12  *   label = @Translation("Favicons & touch icons"),
13  *   description = @Translation("Meta tags for displaying favicons of various sizes and types. All values should be either absolute or relative URLs. No effects are added to the ""precomposed"" icons."),
14  *   weight = 0,
15  * )
16  */
17 class Favicons extends GroupBase {
18   // Nothing here yet. Just a placeholder class for a plugin.
19 }