function DrupalSqlBase::__construct
Overrides SqlBase::__construct
6 calls to DrupalSqlBase::__construct()
- Config::__construct in core/
modules/ migrate_drupal/ src/ Plugin/ migrate/ source/ d8/ Config.php - Constructs a \Drupal\Component\Plugin\PluginBase object.
- Node::__construct in core/
modules/ node/ src/ Plugin/ migrate/ source/ d6/ Node.php - Constructs a \Drupal\Component\Plugin\PluginBase object.
- Node::__construct in core/
modules/ node/ src/ Plugin/ migrate/ source/ d7/ Node.php - Constructs a \Drupal\Component\Plugin\PluginBase object.
- Variable::__construct in core/
modules/ migrate_drupal/ src/ Plugin/ migrate/ source/ Variable.php - Constructs a \Drupal\Component\Plugin\PluginBase object.
- VariableTranslation::__construct in core/
modules/ migrate_drupal/ src/ Plugin/ migrate/ source/ d6/ VariableTranslation.php - Constructs a \Drupal\Component\Plugin\PluginBase object.
6 methods override DrupalSqlBase::__construct()
- Config::__construct in core/
modules/ migrate_drupal/ src/ Plugin/ migrate/ source/ d8/ Config.php - Constructs a \Drupal\Component\Plugin\PluginBase object.
- Node::__construct in core/
modules/ node/ src/ Plugin/ migrate/ source/ d6/ Node.php - Constructs a \Drupal\Component\Plugin\PluginBase object.
- Node::__construct in core/
modules/ node/ src/ Plugin/ migrate/ source/ d7/ Node.php - Constructs a \Drupal\Component\Plugin\PluginBase object.
- Variable::__construct in core/
modules/ migrate_drupal/ src/ Plugin/ migrate/ source/ Variable.php - Constructs a \Drupal\Component\Plugin\PluginBase object.
- VariableTranslation::__construct in core/
modules/ migrate_drupal/ src/ Plugin/ migrate/ source/ d6/ VariableTranslation.php - Constructs a \Drupal\Component\Plugin\PluginBase object.
File
-
core/
modules/ migrate_drupal/ src/ Plugin/ migrate/ source/ DrupalSqlBase.php, line 63
Class
- DrupalSqlBase
- A base class for source plugins using a Drupal database as a source.
Namespace
Drupal\migrate_drupal\Plugin\migrate\sourceCode
public function __construct(array $configuration, $plugin_id, $plugin_definition, MigrationInterface $migration, StateInterface $state, EntityTypeManagerInterface $entity_type_manager) {
@trigger_error('Class "' . __CLASS__ . '" as extended by "' . static::class . '" is deprecated in drupal:11.3.0 and is removed from drupal:12.0.0. There is no replacement. See https://www.drupal.org/node/3533564', E_USER_DEPRECATED);
parent::__construct($configuration, $plugin_id, $plugin_definition, $migration, $state);
$this->entityTypeManager = $entity_type_manager;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.