You are here

public static function NodewordsFieldInstance::create in Metatag 8

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 DrupalSqlBase::create

File

src/Plugin/migrate/source/d6/NodewordsFieldInstance.php, line 30

Class

NodewordsFieldInstance
Drupal 6 Nodewords field instances.

Namespace

Drupal\metatag\Plugin\migrate\source\d6

Code

public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition, MigrationInterface $migration = NULL) {

  /** @var static $source */
  $source = parent::create($container, $configuration, $plugin_id, $plugin_definition, $migration);
  $source
    ->setEntityTypeBundleInfo($container
    ->get('entity_type.bundle.info'));
  return $source;
}