You are here

class EntityProcessor in Content Synchronizer 8

Same name and namespace in other branches
  1. 8.2 src/Annotation/EntityProcessor.php \Drupal\content_synchronizer\Annotation\EntityProcessor
  2. 3.x src/Annotation/EntityProcessor.php \Drupal\content_synchronizer\Annotation\EntityProcessor

Define an EntityProcessor annotation object.

Hierarchy

Expanded class hierarchy of EntityProcessor

5 classes are annotated with EntityProcessor
FileProcessor in src/Plugin/content_synchronizer/entity_processor/FileProcessor.php
Plugin implementation of the 'accordion' formatter.
NodeProcessor in src/Plugin/content_synchronizer/entity_processor/NodeProcessor.php
Plugin implementation of the 'accordion' formatter.
ParagraphProcessor in src/Plugin/content_synchronizer/entity_processor/ParagraphProcessor.php
Plugin implementation of the 'accordion' formatter.
TaxonomyTermProcessor in src/Plugin/content_synchronizer/entity_processor/TaxonomyTermProcessor.php
Plugin implementation of the 'accordion' formatter.
UserProcessor in src/Plugin/content_synchronizer/entity_processor/UserProcessor.php
Plugin implementation of the 'accordion' formatter.

File

src/Annotation/EntityProcessor.php, line 14

Namespace

Drupal\content_synchronizer\Annotation
View source
class EntityProcessor extends Plugin {

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

  /**
   * The entity entityType.
   *
   * @var string
   */
  public $entityType;

}

Members

Namesort descending Modifiers Type Description Overrides
EntityProcessor::$entityType public property The entity entityType.
EntityProcessor::$id public property The plugin ID.
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