metatag-8.x-1.x-dev/src/Plugin/metatag/Tag/Description.php
src/Plugin/metatag/Tag/Description.php
<?php
namespace Drupal\metatag\Plugin\metatag\Tag;
/**
* The basic "Description" meta tag.
*
* @MetatagTag(
* id = "description",
* label = @Translation("Description"),
* description = @Translation("A brief and concise summary of the page's content that is a maximum of 160 characters in length. The description meta tag may be used by search engines to display a snippet about the page in search results."),
* name = "description",
* group = "basic",
* weight = 2,
* type = "label",
* secure = FALSE,
* multiple = FALSE,
* long = TRUE,
* trimmable = TRUE
* )
*/
class Description extends MetaNameBase {
// Nothing here yet. Just a placeholder class for a plugin.
}
