fbf96e0d312acfaacc5cffe18e331626a9771bc0
[yaffs-website] / web / modules / contrib / metatag / metatag_mobile / src / Plugin / metatag / Tag / MsapplicationSquare150x150logo.php
1 <?php
2
3 namespace Drupal\metatag_mobile\Plugin\metatag\Tag;
4
5 use Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
6
7 /**
8  * Provides a plugin for the 'msapplication:square150x150logo' meta tag.
9  *
10  * @MetatagTag(
11  *   id = "msapplication_square150x150logo",
12  *   label = @Translation("MSApplication - Square logo, 150px x 150px"),
13  *   description = @Translation("The URL to a logo file that is 150px by 150px."),
14  *   name = "msapplication-square150x150logo",
15  *   group = "windows_mobile",
16  *   weight = 101,
17  *   type = "image",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class MsapplicationSquare150x150logo extends MetaNameBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }