public static function DrupalSqlBase::create in Drupal 8
Same name and namespace in other branches
- 9 core/modules/migrate_drupal/src/Plugin/migrate/source/DrupalSqlBase.php \Drupal\migrate_drupal\Plugin\migrate\source\DrupalSqlBase::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 SqlBase::create
3 methods override DrupalSqlBase::create()
- Color::create in core/
modules/ color/ src/ Plugin/ migrate/ source/ d7/ Color.php - Creates an instance of the plugin.
- Node::create in core/
modules/ node/ src/ Plugin/ migrate/ source/ d6/ Node.php - Creates an instance of the plugin.
- Node::create in core/
modules/ node/ src/ Plugin/ migrate/ source/ d7/ Node.php - Creates an instance of the plugin.
File
- core/
modules/ migrate_drupal/ src/ Plugin/ migrate/ source/ DrupalSqlBase.php, line 97
Class
- DrupalSqlBase
- A base class for source plugins using a Drupal database as a source.
Namespace
Drupal\migrate_drupal\Plugin\migrate\sourceCode
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('state'), $container
->get('entity_type.manager'));
}