You are here

class EntityUsageTrack in Entity Usage 8

Same name and namespace in other branches
  1. 8.2 src/Annotation/EntityUsageTrack.php \Drupal\entity_usage\Annotation\EntityUsageTrack
  2. 8.3 src/Annotation/EntityUsageTrack.php \Drupal\entity_usage\Annotation\EntityUsageTrack

Defines an entity_usage track annotation object.

Hierarchy

Expanded class hierarchy of EntityUsageTrack

See also

hook_entity_usage_track_info_alter()

4 classes are annotated with EntityUsageTrack
EntityEmbed in src/Plugin/EntityUsage/Track/EntityEmbed.php
Tracks usage of entities related in entity_reference fields.
EntityReference in src/Plugin/EntityUsage/Track/EntityReference.php
Tracks usage of entities related in entity_reference fields.
Link in src/Plugin/EntityUsage/Track/Link.php
Tracks usage of entities related in entity_reference fields.
LinkIt in src/Plugin/EntityUsage/Track/LinkIt.php
Tracks usage of entities related in entity_reference fields.

File

src/Annotation/EntityUsageTrack.php, line 14

Namespace

Drupal\entity_usage\Annotation
View source
class EntityUsageTrack extends Plugin {

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

  /**
   * The human-readable name of the tracking method.
   *
   * @ingroup plugin_translatable
   *
   * @var \Drupal\Core\Annotation\Translation
   */
  public $label;

  /**
   * A brief description of the tracking method.
   *
   * @ingroup plugin_translatable
   *
   * @var \Drupal\Core\Annotation\Translation (optional)
   */
  public $description = '';

}

Members

Namesort descending Modifiers Type Description Overrides
EntityUsageTrack::$description public property A brief description of the tracking method.
EntityUsageTrack::$id public property The plugin ID.
EntityUsageTrack::$label public property The human-readable name of the tracking method.
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