You are here

class MigrateEntityComplete in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/migrate/src/Plugin/Derivative/MigrateEntityComplete.php \Drupal\migrate\Plugin\Derivative\MigrateEntityComplete

Deriver for entity_complete:ENTITY_TYPE entity migrations.

Hierarchy

Expanded class hierarchy of MigrateEntityComplete

File

core/modules/migrate/src/Plugin/Derivative/MigrateEntityComplete.php, line 10

Namespace

Drupal\migrate\Plugin\Derivative
View source
class MigrateEntityComplete extends MigrateEntity {

  /**
   * {@inheritdoc}
   */
  public function getDerivativeDefinitions($base_plugin_definition) {
    foreach ($this->entityDefinitions as $entity_type => $entity_info) {
      $this->derivatives[$entity_type] = [
        'id' => "entity_complete:{$entity_type}",
        'class' => EntityContentComplete::class,
        'requirements_met' => 1,
        'provider' => $entity_info
          ->getProvider(),
      ];
    }
    return $this->derivatives;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
MigrateEntity::$derivatives protected property List of derivative definitions.
MigrateEntity::$entityDefinitions protected property The entity definitions.
MigrateEntity::create public static function Creates a new class instance. Overrides ContainerDeriverInterface::create
MigrateEntity::getDerivativeDefinition public function Gets the definition of a derivative plugin. Overrides DeriverInterface::getDerivativeDefinition
MigrateEntity::__construct public function Constructs a MigrateEntity object.
MigrateEntityComplete::getDerivativeDefinitions public function Gets the definition of all derivatives of a base plugin. Overrides MigrateEntity::getDerivativeDefinitions