EntityReference.php
Same filename in this branch
- 8.9.x core/modules/field/src/Plugin/migrate/field/d7/EntityReference.php
- 8.9.x core/modules/views/src/Plugin/views/row/EntityReference.php
- 8.9.x core/modules/views/src/Plugin/views/display/EntityReference.php
- 8.9.x core/modules/views/src/Plugin/views/style/EntityReference.php
- 8.9.x core/modules/entity_reference/src/Plugin/views/row/EntityReference.php
- 8.9.x core/modules/entity_reference/src/Plugin/views/display/EntityReference.php
- 8.9.x core/modules/entity_reference/src/Plugin/views/style/EntityReference.php
- 8.9.x core/lib/Drupal/Core/Entity/Plugin/DataType/EntityReference.php
Same filename in other branches
- 9 core/modules/field/src/Plugin/migrate/field/d7/EntityReference.php
- 9 core/modules/views/src/Plugin/views/row/EntityReference.php
- 9 core/modules/views/src/Plugin/views/display/EntityReference.php
- 9 core/modules/views/src/Plugin/views/style/EntityReference.php
- 9 core/lib/Drupal/Core/Entity/Plugin/DataType/EntityReference.php
- 10 core/modules/field/src/Plugin/migrate/field/d7/EntityReference.php
- 10 core/modules/views/src/Plugin/views/row/EntityReference.php
- 10 core/modules/views/src/Plugin/views/display/EntityReference.php
- 10 core/modules/views/src/Plugin/views/style/EntityReference.php
- 10 core/lib/Drupal/Core/Entity/Plugin/DataType/EntityReference.php
- 11.x core/modules/field/src/Plugin/migrate/field/d7/EntityReference.php
- 11.x core/modules/views/src/Plugin/views/row/EntityReference.php
- 11.x core/modules/views/src/Plugin/views/display/EntityReference.php
- 11.x core/modules/views/src/Plugin/views/style/EntityReference.php
- 11.x core/lib/Drupal/Core/Entity/Plugin/DataType/EntityReference.php
- 11.x core/modules/views/src/Plugin/views/filter/EntityReference.php
Namespace
Drupal\Core\Field\Plugin\migrate\field\d7File
-
core/
lib/ Drupal/ Core/ Field/ Plugin/ migrate/ field/ d7/ EntityReference.php
View 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
Title | Deprecated | Summary |
---|---|---|
EntityReference | in drupal:8.7.0 and is removed from drupal:9.0.0. Use \Drupal\field\Plugin\migrate\field\d7\EntityReference instead. |
MigrateField plugin for Drupal 7 entity_reference fields. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.