class D7FieldCollectionItemDeriver in Paragraphs 8
Deriver for field collections.
Hierarchy
- class \Drupal\Component\Plugin\Derivative\DeriverBase implements DeriverInterface
- class \Drupal\paragraphs\Plugin\migrate\D7FieldCollectionItemDeriver implements ContainerDeriverInterface uses StringTranslationTrait, MigrationDeriverTrait
Expanded class hierarchy of D7FieldCollectionItemDeriver
2 string references to 'D7FieldCollectionItemDeriver'
- d7_field_collection.yml in migrations/
d7_field_collection.yml - migrations/d7_field_collection.yml
- d7_field_collection_revisions.yml in migrations/
d7_field_collection_revisions.yml - migrations/d7_field_collection_revisions.yml
File
- src/
Plugin/ migrate/ D7FieldCollectionItemDeriver.php, line 17
Namespace
Drupal\paragraphs\Plugin\migrateView source
class D7FieldCollectionItemDeriver extends DeriverBase implements ContainerDeriverInterface {
use MigrationDeriverTrait;
use StringTranslationTrait;
/**
* The base plugin ID this derivative is for.
*
* @var string
*/
protected $basePluginId;
/**
* The migration field discovery service.
*
* @var \Drupal\migrate_drupal\FieldDiscoveryInterface
*/
protected $fieldDiscovery;
/**
* D7FieldCollectionItemDeriver constructor.
*
* @param string $base_plugin_id
* The base plugin ID for the plugin ID.
* @param \Drupal\migrate_drupal\FieldDiscoveryInterface $field_discovery
* The migration field discovery service.
*/
public function __construct($base_plugin_id, FieldDiscoveryInterface $field_discovery) {
$this->basePluginId = $base_plugin_id;
$this->fieldDiscovery = $field_discovery;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, $base_plugin_id) {
return new static($base_plugin_id, $container
->get('migrate_drupal.field_discovery'));
}
/**
* {@inheritdoc}
*/
public function getDerivativeDefinitions($base_plugin_definition) {
$types = static::getSourcePlugin('d7_field_collection_type');
try {
$types
->checkRequirements();
} catch (RequirementsException $e) {
return $this->derivatives;
}
try {
foreach ($types as $row) {
/** @var \Drupal\migrate\Row $row */
$values = $base_plugin_definition;
$fc_bundle = $row
->getSourceProperty('field_name');
$p_bundle = $row
->getSourceProperty('bundle');
$values['label'] = $this
->t('@label (@type)', [
'@label' => $values['label'],
'@type' => $row
->getSourceProperty('name'),
]);
$values['source']['field_name'] = $fc_bundle;
$values['destination']['default_bundle'] = $p_bundle;
/** @var \Drupal\migrate\Plugin\Migration $migration */
$migration = \Drupal::service('plugin.manager.migration')
->createStubMigration($values);
$migration
->setProcessOfProperty('parent_id', 'parent_id');
$migration
->setProcessOfProperty('parent_type', 'parent_type');
$migration
->setProcessOfProperty('parent_field_name', 'field_name');
$this->fieldDiscovery
->addBundleFieldProcesses($migration, 'field_collection_item', $fc_bundle);
$this->derivatives[$p_bundle] = $migration
->getPluginDefinition();
}
} catch (DatabaseExceptionWrapper $e) {
// Once we begin iterating the source plugin it is possible that the
// source tables will not exist. This can happen when the
// MigrationPluginManager gathers up the migration definitions but we do
// not actually have a Drupal 7 source database.
}
return $this->derivatives;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
D7FieldCollectionItemDeriver:: |
protected | property | The base plugin ID this derivative is for. | |
D7FieldCollectionItemDeriver:: |
protected | property | The migration field discovery service. | |
D7FieldCollectionItemDeriver:: |
public static | function |
Creates a new class instance. Overrides ContainerDeriverInterface:: |
|
D7FieldCollectionItemDeriver:: |
public | function |
Gets the definition of all derivatives of a base plugin. Overrides DeriverBase:: |
|
D7FieldCollectionItemDeriver:: |
public | function | D7FieldCollectionItemDeriver constructor. | |
DeriverBase:: |
protected | property | List of derivative definitions. | 1 |
DeriverBase:: |
public | function |
Gets the definition of a derivative plugin. Overrides DeriverInterface:: |
|
MigrationDeriverTrait:: |
public static | function | Returns a fully initialized instance of a source plugin. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. |