You are here

Description.php in Metatag 8

File

src/Plugin/metatag/Tag/Description.php
View source
<?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,
 * )
 */
class Description extends MetaNameBase {

}

Classes

Namesort descending Description
Description The basic "Description" meta tag.