EntityReference.php in Drupal 10
Same filename in this branch
- 10 core/lib/Drupal/Core/Entity/Plugin/DataType/EntityReference.php
- 10 core/modules/views/src/Plugin/views/display/EntityReference.php
- 10 core/modules/views/src/Plugin/views/style/EntityReference.php
- 10 core/modules/views/src/Plugin/views/row/EntityReference.php
- 10 core/modules/field/src/Plugin/migrate/field/d7/EntityReference.php
Same filename and directory in other branches
Namespace
Drupal\field\Plugin\migrate\field\d7File
core/modules/field/src/Plugin/migrate/field/d7/EntityReference.phpView source
<?php
namespace Drupal\field\Plugin\migrate\field\d7;
use Drupal\migrate_drupal\Plugin\migrate\field\FieldPluginBase;
// cspell:ignore entityreference
/**
* MigrateField plugin for Drupal 7 entity_reference fields.
*
* @MigrateField(
* id = "entityreference",
* type_map = {
* "entityreference" = "entity_reference",
* },
* core = {7},
* source_module = "entityreference",
* destination_module = "core"
* )
*/
class EntityReference extends FieldPluginBase {
/**
* {@inheritdoc}
*/
public function getFieldFormatterMap() {
return [
'entityreference_label' => 'entity_reference_label',
'entityreference_entity_id' => 'entity_reference_entity_id',
'entityreference_entity_view' => 'entity_reference_entity_view',
];
}
}
Classes
Name | Description |
---|---|
EntityReference | MigrateField plugin for Drupal 7 entity_reference fields. |