You are here

public function EntityReference::__construct in Drupal 8

Same name in this branch
  1. 8 core/modules/views/src/Plugin/views/display/EntityReference.php \Drupal\views\Plugin\views\display\EntityReference::__construct()
  2. 8 core/lib/Drupal/Core/Field/Plugin/migrate/field/d7/EntityReference.php \Drupal\Core\Field\Plugin\migrate\field\d7\EntityReference::__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 PluginBase::__construct

File

core/lib/Drupal/Core/Field/Plugin/migrate/field/d7/EntityReference.php, line 20

Class

EntityReference
MigrateField plugin for Drupal 7 entity_reference fields.

Namespace

Drupal\Core\Field\Plugin\migrate\field\d7

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition) {
  @trigger_error(__NAMESPACE__ . '\\EntityReference is deprecated in Drupal 8.7.0 and will be removed before Drupal 9.0.0. Use \\Drupal\\field\\Plugin\\migrate\\field\\d7\\EntityReference instead. See https://www.drupal.org/node/3009286', E_USER_DEPRECATED);
  parent::__construct($configuration, $plugin_id, $plugin_definition);
}