function Menu::fields

Same name and namespace in other branches
  1. 11.x core/modules/system/src/Plugin/migrate/source/Menu.php \Drupal\system\Plugin\migrate\source\Menu::fields()
  2. 10 core/modules/system/src/Plugin/migrate/source/Menu.php \Drupal\system\Plugin\migrate\source\Menu::fields()
  3. 8.9.x core/modules/system/src/Plugin/migrate/source/Menu.php \Drupal\system\Plugin\migrate\source\Menu::fields()

File

core/modules/system/src/Plugin/migrate/source/Menu.php, line 32

Class

Menu
Drupal 6/7 menu source from database.

Namespace

Drupal\system\Plugin\migrate\source

Code

public function fields() {
  $fields = [
    'menu_name' => $this->t('The menu name. Primary key.'),
    'title' => $this->t('The human-readable name of the menu.'),
    'description' => $this->t('A description of the menu'),
  ];
  if ($this->database
    ->schema()
    ->fieldExists('menu_custom', 'language')) {
    $fields += [
      'language' => $this->t('Menu language.'),
      'i8n_mode' => $this->t('Menu i18n mode.'),
    ];
  }
  return $fields;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.