You are here

class ImportProcessor in Entity Share 8.3

Defines an Entity Share Client import processor annotation object.

Hierarchy

Expanded class hierarchy of ImportProcessor

9 classes are annotated with ImportProcessor
BlockFieldBlockContentImporter in modules/entity_share_client/src/Plugin/EntityShareClient/Processor/BlockFieldBlockContentImporter.php
Import block contents from block fields.
ChangedTime in modules/entity_share_client/src/Plugin/EntityShareClient/Processor/ChangedTime.php
Update changed time.
DefaultDataProcessor in modules/entity_share_client/src/Plugin/EntityShareClient/Processor/DefaultDataProcessor.php
General default data processor.
EmbeddedEntityImporter in modules/entity_share_client/src/Plugin/EntityShareClient/Processor/EmbeddedEntityImporter.php
Import embedded entities from text formatted fields.
EntityReference in modules/entity_share_client/src/Plugin/EntityShareClient/Processor/EntityReference.php
Handle entity reference.

... See full list

File

modules/entity_share_client/src/Annotation/ImportProcessor.php, line 16

Namespace

Drupal\entity_share_client\Annotation
View source
class ImportProcessor extends Plugin {

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

  /**
   * The plugin label.
   *
   * @var \Drupal\Core\Annotation\Translation
   */
  public $label;

  /**
   * The plugin description.
   *
   * @var \Drupal\Core\Annotation\Translation
   */
  public $description;

  /**
   * The stages this processor will run in, along with their default weights.
   *
   * This is represented as an associative array, mapping one or more of the
   * stage identifiers to the default weight for that stage. For the available
   * stages, see
   * \Drupal\entity_share_client\ImportProcessor\ImportProcessorPluginManager::getProcessingStages().
   *
   * @var int[]
   */
  public $stages;

  /**
   * If the processor should always be enabled.
   *
   * @var bool
   */
  public $locked;

}

Members

Namesort descending Modifiers Type Description Overrides
ImportProcessor::$description public property The plugin description.
ImportProcessor::$id public property The plugin ID.
ImportProcessor::$label public property The plugin label.
ImportProcessor::$locked public property If the processor should always be enabled.
ImportProcessor::$stages public property The stages this processor will run in, along with their default weights.
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