You are here

class Mention in Open Social 8.6

Same name and namespace in other branches
  1. 8.9 modules/custom/mentions/src/Annotation/Mention.php \Drupal\mentions\Annotation\Mention
  2. 8 modules/custom/mentions/src/Annotation/Mention.php \Drupal\mentions\Annotation\Mention
  3. 8.2 modules/custom/mentions/src/Annotation/Mention.php \Drupal\mentions\Annotation\Mention
  4. 8.3 modules/custom/mentions/src/Annotation/Mention.php \Drupal\mentions\Annotation\Mention
  5. 8.4 modules/custom/mentions/src/Annotation/Mention.php \Drupal\mentions\Annotation\Mention
  6. 8.5 modules/custom/mentions/src/Annotation/Mention.php \Drupal\mentions\Annotation\Mention
  7. 8.7 modules/custom/mentions/src/Annotation/Mention.php \Drupal\mentions\Annotation\Mention
  8. 8.8 modules/custom/mentions/src/Annotation/Mention.php \Drupal\mentions\Annotation\Mention
  9. 10.3.x modules/custom/mentions/src/Annotation/Mention.php \Drupal\mentions\Annotation\Mention
  10. 10.0.x modules/custom/mentions/src/Annotation/Mention.php \Drupal\mentions\Annotation\Mention
  11. 10.1.x modules/custom/mentions/src/Annotation/Mention.php \Drupal\mentions\Annotation\Mention
  12. 10.2.x modules/custom/mentions/src/Annotation/Mention.php \Drupal\mentions\Annotation\Mention

Defines Mention Type annotation object.

Hierarchy

Expanded class hierarchy of Mention

2 string references to 'Mention'
mentions.routing.yml in modules/custom/mentions/mentions.routing.yml
modules/custom/mentions/mentions.routing.yml
mentions.schema.yml in modules/custom/mentions/config/schema/mentions.schema.yml
modules/custom/mentions/config/schema/mentions.schema.yml
1 class is annotated with Mention
Entity in modules/custom/mentions/src/Plugin/Mentions/Entity.php
Class Entity.

File

modules/custom/mentions/src/Annotation/Mention.php, line 12

Namespace

Drupal\mentions\Annotation
View source
class Mention extends Plugin {

  /**
   * The plugin ID.
   *
   * @var string
   */
  public $id;

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

}

Members

Namesort descending Modifiers Type Description Overrides
Mention::$id public property The plugin ID.
Mention::$name public property The name of the flavor.
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