You are here

MediaWysiwyg.php in Media Migration 8

File

src/Annotation/MediaWysiwyg.php
View source
<?php

namespace Drupal\media_migration\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines media_wysiwyg annotation object.
 *
 * @Annotation
 */
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;

}

Classes

Namesort descending Description
MediaWysiwyg Defines media_wysiwyg annotation object.