class MigrateProcessPlugin in Drupal 8
Same name and namespace in other branches
- 9 core/modules/migrate/src/Annotation/MigrateProcessPlugin.php \Drupal\migrate\Annotation\MigrateProcessPlugin
- 10 core/modules/migrate/src/Annotation/MigrateProcessPlugin.php \Drupal\migrate\Annotation\MigrateProcessPlugin
Defines a migration process plugin annotation object.
Plugin Namespace: Plugin\migrate\process
For a working example, see \Drupal\migrate\Plugin\migrate\process\DefaultValue
Hierarchy
- class \Drupal\Component\Annotation\Plugin implements AnnotationInterface
- class \Drupal\migrate\Annotation\MigrateProcessPlugin
Expanded class hierarchy of MigrateProcessPlugin
See also
\Drupal\migrate\Plugin\MigratePluginManager
\Drupal\migrate\Plugin\MigrateProcessInterface
\Drupal\migrate\ProcessPluginBase
\Drupal\migrate\Annotation\MigrateSource
\Drupal\migrate\Annotation\MigrateDestination
Related topics
1 string reference to 'MigrateProcessPlugin'
- migrate.services.yml in core/
modules/ migrate/ migrate.services.yml - core/modules/migrate/migrate.services.yml
83 classes are annotated with MigrateProcessPlugin
- ArrayBuild in core/
modules/ migrate/ src/ Plugin/ migrate/ process/ ArrayBuild.php - Builds an array based on the key and value configuration.
- BlockPluginId in core/
modules/ block/ src/ Plugin/ migrate/ process/ BlockPluginId.php - Plugin annotation @MigrateProcessPlugin( id = "block_plugin_id" )
- BlockRegion in core/
modules/ block/ src/ Plugin/ migrate/ process/ BlockRegion.php - Plugin annotation @MigrateProcessPlugin( id = "block_region" )
- BlockSettings in core/
modules/ block/ src/ Plugin/ migrate/ process/ BlockSettings.php - Plugin annotation @MigrateProcessPlugin( id = "block_settings" )
- BlockTheme in core/
modules/ block/ src/ Plugin/ migrate/ process/ BlockTheme.php - Plugin annotation @MigrateProcessPlugin( id = "block_theme" )
File
- core/
modules/ migrate/ src/ Annotation/ MigrateProcessPlugin.php, line 26
Namespace
Drupal\migrate\AnnotationView source
class MigrateProcessPlugin extends Plugin {
/**
* A unique identifier for the process plugin.
*
* @var string
*/
public $id;
/**
* Whether the plugin handles multiples itself.
*
* Typically these plugins will expect an array as input and iterate over it
* themselves, changing the whole array. For example the 'sub_process' and the
* 'flatten' plugins. If the plugin only need to change a single value it
* can skip setting this attribute and let
* \Drupal\migrate\MigrateExecutable::processRow() handle the iteration.
*
* @var bool (optional)
*/
public $handle_multiples = FALSE;
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
MigrateProcessPlugin:: |
public | property | Whether the plugin handles multiples itself. | |
MigrateProcessPlugin:: |
public | property | A unique identifier for the process plugin. | |
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 |