You are here

public function FieldInstancePerViewMode::getIds in Zircon Profile 8

Same name in this branch
  1. 8 core/modules/field/src/Plugin/migrate/source/d6/FieldInstancePerViewMode.php \Drupal\field\Plugin\migrate\source\d6\FieldInstancePerViewMode::getIds()
  2. 8 core/modules/field/src/Plugin/migrate/source/d7/FieldInstancePerViewMode.php \Drupal\field\Plugin\migrate\source\d7\FieldInstancePerViewMode::getIds()
Same name and namespace in other branches
  1. 8.0 core/modules/field/src/Plugin/migrate/source/d7/FieldInstancePerViewMode.php \Drupal\field\Plugin\migrate\source\d7\FieldInstancePerViewMode::getIds()

Defines the source fields uniquely identifying a source row. None of these fields should contain a NULL value - if necessary, use prepareRow() or hook_migrate_prepare_row() to rewrite NULL values to appropriate empty values (such as '' or 0).

Return value

array Array keyed by source field name, with values being a schema array describing the field (such as ['type' => 'string]).

Overrides MigrateSourceInterface::getIds

File

core/modules/field/src/Plugin/migrate/source/d7/FieldInstancePerViewMode.php, line 67
Contains \Drupal\field\Plugin\migrate\source\d7\FieldInstancePerViewMode.

Class

FieldInstancePerViewMode
The field instance per view mode source class.

Namespace

Drupal\field\Plugin\migrate\source\d7

Code

public function getIds() {
  return array(
    'entity_type' => array(
      'type' => 'string',
    ),
    'bundle' => array(
      'type' => 'string',
    ),
    'view_mode' => array(
      'type' => 'string',
    ),
    'field_name' => array(
      'type' => 'string',
    ),
  );
}