public function NodewordsField::fields in Metatag 8
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
- src/
Plugin/ migrate/ source/ d6/ NodewordsField.php, line 61
Class
- NodewordsField
- Drupal 6 Nodewords field.
Namespace
Drupal\metatag\Plugin\migrate\source\d6Code
public function fields() {
$fields = [
'type' => $this
->t('Configuration type'),
];
return $fields;
}