You are here

public function Action::fields in Drupal 10

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/system/src/Plugin/migrate/source/Action.php, line 29

Class

Action
Drupal action source from database.

Namespace

Drupal\system\Plugin\migrate\source

Code

public function fields() {
  $fields = [
    'aid' => $this
      ->t('Action ID'),
    'type' => $this
      ->t('Module'),
    'callback' => $this
      ->t('Callback function'),
    'parameters' => $this
      ->t('Action configuration'),
  ];
  if ($this
    ->getModuleSchemaVersion('system') >= 7000) {
    $fields['label'] = $this
      ->t('Label of the action');
  }
  else {
    $fields['description'] = $this
      ->t('Action description');
  }
  return $fields;
}