You are here

Expires.php in Metatag 8

File

src/Plugin/metatag/Tag/Expires.php
View source
<?php

namespace Drupal\metatag\Plugin\metatag\Tag;


/**
 * The Expires meta tag.
 *
 * @MetatagTag(
 *   id = "expires",
 *   label = @Translation("Expires"),
 *   description = @Translation("Control when the browser's internal cache of the current page should expire. The date must to be an <a href='https://www.csgnetwork.com/timerfc1123calc.html'>RFC-1123</a>-compliant date string that is represented in Greenwich Mean Time (GMT), e.g. 'Thu, 01 Sep 2016 00:12:56 GMT'. Set to '0' to stop the page being cached entirely."),
 *   name = "expires",
 *   group = "advanced",
 *   weight = 11,
 *   type = "label",
 *   secure = FALSE,
 *   multiple = FALSE
 * )
 */
class Expires extends MetaNameBase {

}

Classes

Namesort descending Description
Expires The Expires meta tag.