function VocabularyTranslation::query
Overrides Vocabulary::query
File
- 
              core/
modules/ taxonomy/ src/ Plugin/ migrate/ source/ d7/ VocabularyTranslation.php, line 25  
Class
- VocabularyTranslation
 - Drupal 7 i18n vocabulary translations source from database.
 
Namespace
Drupal\taxonomy\Plugin\migrate\source\d7Code
public function query() {
  $query = parent::query();
  $query->leftJoin('i18n_string', 'i18n', 'CAST ([v].[vid] AS CHAR(222)) = [i18n].[objectid]');
  $query->innerJoin('locales_target', 'lt', '[lt].[lid] = [i18n].[lid]');
  $query->condition('type', 'vocabulary')
    ->fields('lt')
    ->fields('i18n');
  $query->addField('lt', 'lid', 'lt_lid');
  if ($this->getDatabase()
    ->schema()
    ->fieldExists('taxonomy_vocabulary', 'language')) {
    $query->addField('v', 'language', 'v_language');
  }
  if ($this->getDatabase()
    ->schema()
    ->fieldExists('taxonomy_vocabulary', 'i18n_mode')) {
    $query->addField('v', 'i18n_mode');
  }
  return $query;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.