You are here

class MediaFinder in Group Media 8.2

Defines an media_finder annotation object.

Hierarchy

Expanded class hierarchy of MediaFinder

See also

hook_media_finder_info_alter()

3 classes are annotated with MediaFinder
EntityEmbed in src/Plugin/MediaFinder/EntityEmbed.php
Tracks usage of entities related in text fields.
MediaEmbed in src/Plugin/MediaFinder/MediaEmbed.php
Tracks usage of drupal-media tags in wysiwyg fields.
MediaReference in src/Plugin/MediaFinder/MediaReference.php
Plugin for searching media in entity reference fields.

File

src/Annotation/MediaFinder.php, line 14

Namespace

Drupal\groupmedia\Annotation
View source
class MediaFinder extends Plugin {

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

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

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

  /**
   * The field types that this plugin is able to track.
   *
   * @var string[]
   */
  public $field_types = [];

  /**
   * The element to look for.
   *
   * @var string
   */
  public $element = '';

}

Members

Namesort descending Modifiers Type Description Overrides
MediaFinder::$description public property A brief description of the tracking method.
MediaFinder::$element public property The element to look for.
MediaFinder::$field_types public property The field types that this plugin is able to track.
MediaFinder::$id public property The plugin ID.
MediaFinder::$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