Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Menu.php

function Menu::fields

Overrides MigrateSourceInterface::fields

2 calls to Menu::fields()
MenuTranslation::fields in core/modules/system/src/Plugin/migrate/source/d7/MenuTranslation.php
Returns available fields on the source.
MenuTranslation::fields in core/modules/system/src/Plugin/migrate/source/d7/MenuTranslation.php
Returns available fields on the source.
1 method overrides Menu::fields()
MenuTranslation::fields in core/modules/system/src/Plugin/migrate/source/d7/MenuTranslation.php
Returns available fields on the source.

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'),
    ];
    // The database connection may not exist, for example, when building
    // the Migrate Message form.
    if ($source_database = $this->database) {
        if ($source_database->schema()
            ->fieldExists('menu_custom', 'language')) {
            $fields += [
                'language' => $this->t('Menu language.'),
                'i8n_mode' => $this->t('Menu i18n mode.'),
            ];
        }
    }
    return $fields;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal