You are here

class ImportProcessor in YAML Content 8.2

Defines a ContentProcessor annotation object for import operations.

Hierarchy

Expanded class hierarchy of ImportProcessor

4 classes are annotated with ImportProcessor
DebugImportProcessor in src/Plugin/YamlContent/DebugImportProcessor.php
Import processor to support entity queries and references.
EntityReferenceImportProcessor in src/Plugin/YamlContent/EntityReferenceImportProcessor.php
Import processor to support entity queries and references.
SampleDataProcessor in modules/sample_data/src/Plugin/YamlContent/SampleDataProcessor.php
Import processor to support entity queries and references.
TemplateProcessor in src/Plugin/YamlContent/TemplateProcessor.php
A content processor plugin supporting content templates in defined content.

File

src/Annotation/ImportProcessor.php, line 10

Namespace

Drupal\yaml_content\Annotation
View source
class ImportProcessor extends ContentProcessor {

  /**
   * {@inheritdoc}
   */
  public $id;

  /**
   * {@inheritdoc}
   */
  public $title;

  /**
   * {@inheritdoc}
   */
  public $description;

  /**
   * Whether the processor supports import operations.
   *
   * @var bool
   */
  public $import = TRUE;

}

Members

Namesort descending Modifiers Type Description Overrides
ContentProcessor::$export public property Whether the processor supports export operations.
ImportProcessor::$description public property The description of the plugin. Overrides ContentProcessor::$description
ImportProcessor::$id public property The plugin ID. Overrides ContentProcessor::$id
ImportProcessor::$import public property Whether the processor supports import operations. Overrides ContentProcessor::$import
ImportProcessor::$title public property The title of the plugin. Overrides ContentProcessor::$title
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