EntityReference.php in Drupal 8
Same filename in this branch
- 8 core/lib/Drupal/Core/Entity/Plugin/DataType/EntityReference.php
- 8 core/modules/views/src/Plugin/views/display/EntityReference.php
- 8 core/modules/views/src/Plugin/views/style/EntityReference.php
- 8 core/modules/views/src/Plugin/views/row/EntityReference.php
- 8 core/modules/entity_reference/src/Plugin/views/display/EntityReference.php
- 8 core/modules/entity_reference/src/Plugin/views/style/EntityReference.php
- 8 core/modules/entity_reference/src/Plugin/views/row/EntityReference.php
- 8 core/modules/field/src/Plugin/migrate/field/d7/EntityReference.php
- 8 core/lib/Drupal/Core/Field/Plugin/migrate/field/d7/EntityReference.php
File
core/lib/Drupal/Core/Field/Plugin/migrate/field/d7/EntityReference.phpView source
<?php
namespace Drupal\Core\Field\Plugin\migrate\field\d7;
use Drupal\field\Plugin\migrate\field\d7\EntityReference as EntityReferenceNew;
/**
* MigrateField plugin for Drupal 7 entity_reference fields.
*
* @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Use
* \Drupal\field\Plugin\migrate\field\d7\EntityReference instead.
*
* @see https://www.drupal.org/node/3009286
*/
class EntityReference extends EntityReferenceNew {
/**
* {@inheritdoc}
*/
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);
}
}
Classes
Name | Description |
---|---|
EntityReference Deprecated | MigrateField plugin for Drupal 7 entity_reference fields. |