MenuTranslation.php

Same filename and directory in other branches
  1. 9 core/modules/system/src/Plugin/migrate/source/d7/MenuTranslation.php
  2. 10 core/modules/system/src/Plugin/migrate/source/d7/MenuTranslation.php

Namespace

Drupal\system\Plugin\migrate\source\d7

File

core/modules/system/src/Plugin/migrate/source/d7/MenuTranslation.php

View source
<?php

namespace Drupal\system\Plugin\migrate\source\d7;

use Drupal\system\Plugin\migrate\source\Menu;
// cspell:ignore objectindex plid textgroup

/**
 * Drupal 7 i18n menu translation source from database.
 *
 * For available configuration keys, refer to the parent classes.
 *
 * @see \Drupal\migrate\Plugin\migrate\source\SqlBase
 * @see \Drupal\migrate\Plugin\migrate\source\SourcePluginBase
 *
 * @MigrateSource(
 *   id = "d7_menu_translation",
 *   source_module = "i18n_menu"
 * )
 */
class MenuTranslation extends Menu {
    
    /**
     * {@inheritdoc}
     */
    public function query() {
        $query = parent::query();
        $query->fields('i18n', [
            'lid',
            'textgroup',
            'context',
            'objectid',
            'type',
            'property',
            'objectindex',
            'format',
        ])
            ->fields('lt', [
            'lid',
            'translation',
            'language',
            'plid',
            'plural',
            'i18n_status',
        ])
            ->condition('i18n.textgroup', 'menu')
            ->isNotNull('lt.lid');
        $query->addField('m', 'language', 'm_language');
        $query->leftJoin('i18n_string', 'i18n', '[i18n].[objectid] = [m].[menu_name]');
        $query->leftJoin('locales_target', 'lt', '[lt].[lid] = [i18n].[lid]');
        return $query;
    }
    
    /**
     * {@inheritdoc}
     */
    public function fields() {
        $fields = [
            'lid' => $this->t('Language string ID'),
            'language' => $this->t('Menu language'),
            'textgroup' => $this->t('A module defined group of translations'),
            'context' => $this->t('Full string ID for quick search: type:objectid:property.'),
            'objectid' => $this->t('Object ID'),
            'type' => $this->t('Object type for this string'),
            'property' => $this->t('Object property for this string'),
            'objectindex' => $this->t('Integer value of Object ID'),
            'format' => $this->t('The {filter_format}.format of the string'),
            'translation' => $this->t('Translation'),
            'plid' => $this->t('Parent lid'),
            'i18n_status' => $this->t('Translation needs update'),
        ] + parent::fields();
        return $fields;
    }
    
    /**
     * {@inheritdoc}
     */
    public function getIds() {
        $ids = parent::getIds();
        $ids['language']['type'] = 'string';
        $ids['language']['alias'] = 'lt';
        $ids['property']['type'] = 'string';
        return $ids;
    }

}

Classes

Title Deprecated Summary
MenuTranslation Drupal 7 i18n menu translation source from database.

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