You are here

public static function ContentEntity::create in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/migrate_drupal/src/Plugin/migrate/source/ContentEntity.php \Drupal\migrate_drupal\Plugin\migrate\source\ContentEntity::create()

Creates an instance of the plugin.

Parameters

\Symfony\Component\DependencyInjection\ContainerInterface $container: The container to pull out services used in the plugin.

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin ID for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

Return value

static Returns an instance of this plugin.

Overrides ContainerFactoryPluginInterface::create

4 calls to ContentEntity::create()
ContentEntityTest::testConstructorEntityTypeMissing in core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/ContentEntityTest.php
Tests the constructor for missing entity_type.
ContentEntityTest::testConstructorInvalidBundle in core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/ContentEntityTest.php
Tests the constructor for invalid entity bundle.
ContentEntityTest::testConstructorNonContentEntity in core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/ContentEntityTest.php
Tests the constructor for non content entity.
ContentEntityTest::testConstructorNotBundable in core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/ContentEntityTest.php
Tests the constructor for not bundleable entity.

File

core/modules/migrate_drupal/src/Plugin/migrate/source/ContentEntity.php, line 138

Class

ContentEntity
Source plugin to get content entities from the current version of Drupal.

Namespace

Drupal\migrate_drupal\Plugin\migrate\source

Code

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'), $container
    ->get('entity_field.manager'), $container
    ->get('entity_type.bundle.info'));
}