EntityReference.php

Same filename in this branch
  1. 8.9.x core/modules/views/src/Plugin/views/row/EntityReference.php
  2. 8.9.x core/modules/views/src/Plugin/views/display/EntityReference.php
  3. 8.9.x core/modules/views/src/Plugin/views/style/EntityReference.php
  4. 8.9.x core/modules/entity_reference/src/Plugin/views/row/EntityReference.php
  5. 8.9.x core/modules/entity_reference/src/Plugin/views/display/EntityReference.php
  6. 8.9.x core/modules/entity_reference/src/Plugin/views/style/EntityReference.php
  7. 8.9.x core/lib/Drupal/Core/Field/Plugin/migrate/field/d7/EntityReference.php
  8. 8.9.x core/lib/Drupal/Core/Entity/Plugin/DataType/EntityReference.php
Same filename and directory in other branches
  1. 9 core/modules/field/src/Plugin/migrate/field/d7/EntityReference.php
  2. 9 core/modules/views/src/Plugin/views/row/EntityReference.php
  3. 9 core/modules/views/src/Plugin/views/display/EntityReference.php
  4. 9 core/modules/views/src/Plugin/views/style/EntityReference.php
  5. 9 core/lib/Drupal/Core/Entity/Plugin/DataType/EntityReference.php
  6. 10 core/modules/field/src/Plugin/migrate/field/d7/EntityReference.php
  7. 10 core/modules/views/src/Plugin/views/row/EntityReference.php
  8. 10 core/modules/views/src/Plugin/views/display/EntityReference.php
  9. 10 core/modules/views/src/Plugin/views/style/EntityReference.php
  10. 10 core/lib/Drupal/Core/Entity/Plugin/DataType/EntityReference.php
  11. 11.x core/modules/field/src/Plugin/migrate/field/d7/EntityReference.php
  12. 11.x core/modules/views/src/Plugin/views/row/EntityReference.php
  13. 11.x core/modules/views/src/Plugin/views/display/EntityReference.php
  14. 11.x core/modules/views/src/Plugin/views/style/EntityReference.php
  15. 11.x core/lib/Drupal/Core/Entity/Plugin/DataType/EntityReference.php

Namespace

Drupal\field\Plugin\migrate\field\d7

File

core/modules/field/src/Plugin/migrate/field/d7/EntityReference.php

View source
<?php

namespace Drupal\field\Plugin\migrate\field\d7;

use Drupal\migrate_drupal\Plugin\migrate\field\FieldPluginBase;

/**
 * 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

Title Deprecated Summary
EntityReference 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.