f72c763189c29980619e9254492681c15d0f8011
[yaffs-website] / web / modules / contrib / metatag / src / Plugin / metatag / Tag / SetCookie.php
1 <?php
2
3 namespace Drupal\metatag\Plugin\metatag\Tag;
4
5 /**
6  * Provides a plugin for the 'set-cookie' meta tag.
7  *
8  * @MetatagTag(
9  *   id = "set_cookie",
10  *   label = @Translation("Set cookie"),
11  *   description = @Translation("<a href='https://www.metatags.org/meta_http_equiv_set_cookie'>Sets a cookie</a> on the visitor's browser. Can be in either NAME=VALUE format, or a more verbose format including the path and expiration date; see the link for full details on the syntax."),
12  *   name = "set-cookie",
13  *   group = "advanced",
14  *   weight = 5,
15  *   type = "string",
16  *   secure = FALSE,
17  *   multiple = FALSE
18  * )
19  */
20 class SetCookie extends MetaHttpEquivBase {
21   // Nothing here yet. Just a placeholder class for a plugin.
22 }