You are here

public function ShortcutSetUsers::fields in Drupal 8

Same name in this branch
  1. 8 core/modules/shortcut/src/Plugin/migrate/destination/ShortcutSetUsers.php \Drupal\shortcut\Plugin\migrate\destination\ShortcutSetUsers::fields()
  2. 8 core/modules/shortcut/src/Plugin/migrate/source/d7/ShortcutSetUsers.php \Drupal\shortcut\Plugin\migrate\source\d7\ShortcutSetUsers::fields()
Same name and namespace in other branches
  1. 9 core/modules/shortcut/src/Plugin/migrate/source/d7/ShortcutSetUsers.php \Drupal\shortcut\Plugin\migrate\source\d7\ShortcutSetUsers::fields()
  2. 10 core/modules/shortcut/src/Plugin/migrate/source/d7/ShortcutSetUsers.php \Drupal\shortcut\Plugin\migrate\source\d7\ShortcutSetUsers::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/shortcut/src/Plugin/migrate/source/d7/ShortcutSetUsers.php, line 27

Class

ShortcutSetUsers
Drupal 7 shortcut_set_users source from database.

Namespace

Drupal\shortcut\Plugin\migrate\source\d7

Code

public function fields() {
  return [
    'uid' => $this
      ->t('The users.uid for this set.'),
    'set_name' => $this
      ->t('The shortcut_set.set_name that will be displayed for this user.'),
  ];
}