You are here

class MetatagGroup in Metatag 8

Defines a MetatagGroup annotation object.

Hierarchy

Expanded class hierarchy of MetatagGroup

19 classes are annotated with MetatagGroup
Advanced in src/Plugin/metatag/Group/Advanced.php
The advanced group.
AndroidMobile in metatag_mobile/src/Plugin/metatag/Group/AndroidMobile.php
The Android mobile group.
AppleMobile in metatag_mobile/src/Plugin/metatag/Group/AppleMobile.php
The Apple mobile group.
AppLinks in metatag_app_links/src/Plugin/metatag/Group/AppLinks.php
Provides a plugin for the 'App Links' meta tag group.
Basic in src/Plugin/metatag/Group/Basic.php
The basic group.

... See full list

File

src/Annotation/MetatagGroup.php, line 12

Namespace

Drupal\metatag\Annotation
View source
class MetatagGroup extends Plugin {

  /**
   * The group's internal ID, in machine name format.
   *
   * @var string
   */
  public $id;

  /**
   * The name of the group.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $label;

  /**
   * Description of the group.
   *
   * @var string
   */
  public $description;

  /**
   * Weight of the group.
   *
   * @var int
   */
  public $weight;

}

Members

Namesort descending Modifiers Type Description Overrides
MetatagGroup::$description public property Description of the group.
MetatagGroup::$id public property The group's internal ID, in machine name format.
MetatagGroup::$label public property The name of the group.
MetatagGroup::$weight public property Weight of the group.
Plugin::$definition protected property The plugin definition read from the class annotation. 1
Plugin::get public function Gets the value of an annotation. Overrides AnnotationInterface::get 5
Plugin::getClass public function Gets the class of the annotated class. Overrides AnnotationInterface::getClass
Plugin::getId public function Gets the unique ID for this annotated class. Overrides AnnotationInterface::getId
Plugin::getProvider public function Gets the name of the provider of the annotated class. Overrides AnnotationInterface::getProvider
Plugin::parse protected function Parses an annotation into its definition.
Plugin::setClass public function Sets the class of the annotated class. Overrides AnnotationInterface::setClass
Plugin::setProvider public function Sets the name of the provider of the annotated class. Overrides AnnotationInterface::setProvider
Plugin::__construct public function Constructs a Plugin object. 2