public function ShortcutSet::fields in Drupal 10
Same name and namespace in other branches
- 8 core/modules/shortcut/src/Plugin/migrate/source/d7/ShortcutSet.php \Drupal\shortcut\Plugin\migrate\source\d7\ShortcutSet::fields()
- 9 core/modules/shortcut/src/Plugin/migrate/source/d7/ShortcutSet.php \Drupal\shortcut\Plugin\migrate\source\d7\ShortcutSet::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/ ShortcutSet.php, line 32
Class
- ShortcutSet
- Drupal 7 shortcut_set source from database.
Namespace
Drupal\shortcut\Plugin\migrate\source\d7Code
public function fields() {
return [
'set_name' => $this
->t("The name under which the set's links are stored."),
'title' => $this
->t("The title of the set."),
];
}