class MigrateEntityComplete

Same name and namespace in other branches
  1. 9 core/modules/migrate/src/Plugin/Derivative/MigrateEntityComplete.php \Drupal\migrate\Plugin\Derivative\MigrateEntityComplete
  2. 8.9.x core/modules/migrate/src/Plugin/Derivative/MigrateEntityComplete.php \Drupal\migrate\Plugin\Derivative\MigrateEntityComplete
  3. 10 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

1 file declares its use of MigrateEntityComplete
EntityContentComplete.php in core/modules/migrate/src/Plugin/migrate/destination/EntityContentComplete.php

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

Title Sort descending Modifiers Object type Summary Overriden Title
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

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.