function LanguageContentSettingsTaxonomyVocabulary::query
Return value
\Drupal\Core\Database\Query\SelectInterface
Overrides SqlBase::query
File
-
core/
modules/ language/ src/ Plugin/ migrate/ source/ d6/ LanguageContentSettingsTaxonomyVocabulary.php, line 28
Class
- LanguageContentSettingsTaxonomyVocabulary
- Drupal 6 i18n vocabularies source from database.
Namespace
Drupal\language\Plugin\migrate\source\d6Code
public function query() {
$query = $this->select('vocabulary', 'v')
->fields('v', [
'vid',
]);
if ($this->getDatabase()
->schema()
->fieldExists('vocabulary', 'language')) {
$query->addField('v', 'language');
}
return $query;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.