You are here

protected function NodeReference::entityId in Drupal 10

Same name in this branch
  1. 10 core/modules/migrate_drupal/src/Plugin/migrate/field/d6/NodeReference.php \Drupal\migrate_drupal\Plugin\migrate\field\d6\NodeReference::entityId()
  2. 10 core/modules/migrate_drupal/src/Plugin/migrate/field/d7/NodeReference.php \Drupal\migrate_drupal\Plugin\migrate\field\d7\NodeReference::entityId()
Same name and namespace in other branches
  1. 9 core/modules/migrate_drupal/src/Plugin/migrate/field/d7/NodeReference.php \Drupal\migrate_drupal\Plugin\migrate\field\d7\NodeReference::entityId()

Gets the name of the field property which holds the entity ID.

Return value

string The entity id.

Overrides ReferenceBase::entityId

File

core/modules/migrate_drupal/src/Plugin/migrate/field/d7/NodeReference.php, line 39

Class

NodeReference
MigrateField plugin for Drupal 7 node_reference fields.

Namespace

Drupal\migrate_drupal\Plugin\migrate\field\d7

Code

protected function entityId() {
  return 'nid';
}