EmptySource.php

Same filename in this branch
  1. main core/modules/migrate_drupal/src/Plugin/migrate/source/EmptySource.php
  2. main core/modules/migrate/src/Plugin/migrate/source/EmptySource.php
Same filename and directory in other branches
  1. 10 core/modules/migrate_drupal/src/Plugin/migrate/source/EmptySource.php
  2. 11.x core/modules/migrate_drupal/src/Plugin/migrate/source/EmptySource.php
  3. 11.x core/modules/migrate/src/Plugin/migrate/source/EmptySource.php
  4. 10 core/modules/migrate/src/Plugin/migrate/source/EmptySource.php
  5. 9 core/modules/migrate_drupal/src/Plugin/migrate/source/EmptySource.php
  6. 9 core/modules/migrate/src/Plugin/migrate/source/EmptySource.php
  7. 8.9.x core/modules/migrate_drupal/src/Plugin/migrate/source/EmptySource.php
  8. 8.9.x core/modules/migrate/src/Plugin/migrate/source/EmptySource.php
  9. 11.x core/modules/migrate/tests/modules/migrate_multiple_provider_test/src/Plugin/migrate/source/EmptySource.php

Namespace

Drupal\migrate_multiple_provider_test\Plugin\migrate\source

File

core/modules/migrate/tests/modules/migrate_multiple_provider_test/src/Plugin/migrate/source/EmptySource.php

View source
<?php

declare (strict_types=1);
namespace Drupal\migrate_multiple_provider_test\Plugin\migrate\source;

use Drupal\Component\Plugin\DependentPluginInterface;
use Drupal\Core\Entity\DependencyTrait;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Drupal\migrate\Plugin\MigrationInterface;
use Drupal\migrate\Plugin\migrate\source\EmptySource as BaseEmptySource;
use Symfony\Component\DependencyInjection\ContainerInterface;

/**
 * Source for testing multiple providers.
 *
 * @MigrateSource(
 *   id = "test_empty",
 *   source_module = "system",
 * )
 */
class EmptySource extends BaseEmptySource implements ContainerFactoryPluginInterface, DependentPluginInterface {
  use DependencyTrait;
  
  /**
   * The entity type manager.
   */
  protected EntityTypeManagerInterface $entityTypeManager;
  
  /**
   * {@inheritdoc}
   */
  public function __construct(array $configuration, $plugin_id, $plugin_definition, MigrationInterface $migration, EntityTypeManagerInterface $entity_type_manager) {
    parent::__construct($configuration, $plugin_id, $plugin_definition, $migration);
    $this->entityTypeManager = $entity_type_manager;
  }
  
  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition, ?MigrationInterface $migration = NULL) {
    return new static($configuration, $plugin_id, $plugin_definition, $migration, $container->get('entity_type.manager'));
  }
  
  /**
   * {@inheritdoc}
   */
  public function calculateDependencies() : array {
    // The empty source plugin supports the entity_type constant.
    if (isset($this->configuration['constants']['entity_type'])) {
      $this->addDependency('module', $this->entityTypeManager
        ->getDefinition($this->configuration['constants']['entity_type'])
        ->getProvider());
    }
    return $this->dependencies;
  }

}

Classes

Title Deprecated Summary
EmptySource Source for testing multiple providers.

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