You are here

class MediaWysiwyg in Media Migration 8

Defines media_wysiwyg annotation object.

Hierarchy

Expanded class hierarchy of MediaWysiwyg

5 classes are annotated with MediaWysiwyg
Bean in src/Plugin/MediaWysiwyg/Bean.php
Media WYSIWYG plugin for bean → block_content migrations.
FileEntity in src/Plugin/MediaWysiwyg/FileEntity.php
Media WYSIWYG plugin for file entity → media migrations.
General in src/Plugin/MediaWysiwyg/General.php
General Media WYSIWYG plugin.
MultifieldToParagraphs in src/Plugin/MediaWysiwyg/MultifieldToParagraphs.php
Multifield → Paragraphs Media WYSIWYG plugin.
Paragraphs in src/Plugin/MediaWysiwyg/Paragraphs.php
Field collection and paragraphs Media WYSIWYG plugin.

File

src/Annotation/MediaWysiwyg.php, line 12

Namespace

Drupal\media_migration\Annotation
View source
class MediaWysiwyg extends Plugin {

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

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

  /**
   * Map of source entity type IDs and their destination entity type IDs.
   *
   * @var string[]
   */
  public $entity_type_map;

}

Members

Namesort descending Modifiers Type Description Overrides
MediaWysiwyg::$entity_type_map public property Map of source entity type IDs and their destination entity type IDs.
MediaWysiwyg::$id public property The plugin ID.
MediaWysiwyg::$title public property The human-readable name of the plugin.
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