class ImportProcessor in YAML Content 8.2
Defines a ContentProcessor annotation object for import operations.
Hierarchy
- class \Drupal\Component\Annotation\Plugin implements AnnotationInterface
- class \Drupal\yaml_content\Annotation\ContentProcessor
- class \Drupal\yaml_content\Annotation\ImportProcessor
- class \Drupal\yaml_content\Annotation\ContentProcessor
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\AnnotationView 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ContentProcessor:: |
public | property | Whether the processor supports export operations. | |
ImportProcessor:: |
public | property |
The description of the plugin. Overrides ContentProcessor:: |
|
ImportProcessor:: |
public | property |
The plugin ID. Overrides ContentProcessor:: |
|
ImportProcessor:: |
public | property |
Whether the processor supports import operations. Overrides ContentProcessor:: |
|
ImportProcessor:: |
public | property |
The title of the plugin. Overrides ContentProcessor:: |
|
Plugin:: |
protected | property | The plugin definition read from the class annotation. | 1 |
Plugin:: |
public | function |
Gets the value of an annotation. Overrides AnnotationInterface:: |
5 |
Plugin:: |
public | function |
Gets the class of the annotated class. Overrides AnnotationInterface:: |
|
Plugin:: |
public | function |
Gets the unique ID for this annotated class. Overrides AnnotationInterface:: |
|
Plugin:: |
public | function |
Gets the name of the provider of the annotated class. Overrides AnnotationInterface:: |
|
Plugin:: |
protected | function | Parses an annotation into its definition. | |
Plugin:: |
public | function |
Sets the class of the annotated class. Overrides AnnotationInterface:: |
|
Plugin:: |
public | function |
Sets the name of the provider of the annotated class. Overrides AnnotationInterface:: |
|
Plugin:: |
public | function | Constructs a Plugin object. | 2 |