Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

MigrateEntityComplete.php

Namespace

Drupal\migrate\Plugin\Derivative

File

core/modules/migrate/src/Plugin/Derivative/MigrateEntityComplete.php

View source
<?php

namespace Drupal\migrate\Plugin\Derivative;

use Drupal\migrate\Plugin\migrate\destination\EntityContentComplete;

/**
 * Deriver for entity_complete:ENTITY_TYPE entity migrations.
 */
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;
    }

}

Classes

Title Deprecated Summary
MigrateEntityComplete Deriver for entity_complete:ENTITY_TYPE entity migrations.

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal