You are here

public function VariableMultiRow::fields in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/migrate_drupal/src/Plugin/migrate/source/VariableMultiRow.php \Drupal\migrate_drupal\Plugin\migrate\source\VariableMultiRow::fields()

Returns available fields on the source.

Return value

array Available fields in the source, keys are the field machine names as used in field mappings, values are descriptions.

Overrides MigrateSourceInterface::fields

File

core/modules/migrate_drupal/src/Plugin/migrate/source/VariableMultiRow.php, line 37
Contains \Drupal\migrate_drupal\Plugin\migrate\source\VariableMultiRow.

Class

VariableMultiRow
Multiple variables source from database.

Namespace

Drupal\migrate_drupal\Plugin\migrate\source

Code

public function fields() {
  return array(
    'name' => $this
      ->t('Name'),
    'value' => $this
      ->t('Value'),
  );
}