You are here

public function Variable::__construct in Zircon Profile 8

Same name in this branch
  1. 8 vendor/symfony/dependency-injection/Variable.php \Symfony\Component\DependencyInjection\Variable::__construct()
  2. 8 core/modules/migrate_drupal/src/Plugin/migrate/source/Variable.php \Drupal\migrate_drupal\Plugin\migrate\source\Variable::__construct()
Same name and namespace in other branches
  1. 8.0 core/modules/migrate_drupal/src/Plugin/migrate/source/Variable.php \Drupal\migrate_drupal\Plugin\migrate\source\Variable::__construct()

Constructs a Drupal\Component\Plugin\PluginBase object.

Parameters

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.

Overrides DrupalSqlBase::__construct

File

core/modules/migrate_drupal/src/Plugin/migrate/source/Variable.php, line 36
Contains \Drupal\migrate_drupal\Plugin\migrate\source\Variable.

Class

Variable
Drupal variable source from database.

Namespace

Drupal\migrate_drupal\Plugin\migrate\source

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, MigrationInterface $migration, StateInterface $state, EntityManagerInterface $entity_manager) {
  parent::__construct($configuration, $plugin_id, $plugin_definition, $migration, $state, $entity_manager);
  $this->variables = $this->configuration['variables'];
}