function Vocabulary::query
Same name in this branch
- 11.x core/modules/taxonomy/src/Plugin/migrate/source/d6/Vocabulary.php \Drupal\taxonomy\Plugin\migrate\source\d6\Vocabulary::query()
Same name in other branches
- 9 core/modules/taxonomy/src/Plugin/migrate/source/d6/Vocabulary.php \Drupal\taxonomy\Plugin\migrate\source\d6\Vocabulary::query()
- 9 core/modules/taxonomy/src/Plugin/migrate/source/d7/Vocabulary.php \Drupal\taxonomy\Plugin\migrate\source\d7\Vocabulary::query()
- 8.9.x core/modules/taxonomy/src/Plugin/migrate/source/d6/Vocabulary.php \Drupal\taxonomy\Plugin\migrate\source\d6\Vocabulary::query()
- 8.9.x core/modules/taxonomy/src/Plugin/migrate/source/d7/Vocabulary.php \Drupal\taxonomy\Plugin\migrate\source\d7\Vocabulary::query()
- 10 core/modules/taxonomy/src/Plugin/migrate/source/d6/Vocabulary.php \Drupal\taxonomy\Plugin\migrate\source\d6\Vocabulary::query()
- 10 core/modules/taxonomy/src/Plugin/migrate/source/d7/Vocabulary.php \Drupal\taxonomy\Plugin\migrate\source\d7\Vocabulary::query()
Overrides SqlBase::query
2 methods override Vocabulary::query()
- LanguageContentSettingsTaxonomyVocabulary::query in core/
modules/ language/ src/ Plugin/ migrate/ source/ d7/ LanguageContentSettingsTaxonomyVocabulary.php - VocabularyTranslation::query in core/
modules/ taxonomy/ src/ Plugin/ migrate/ source/ d7/ VocabularyTranslation.php
File
-
core/
modules/ taxonomy/ src/ Plugin/ migrate/ source/ d7/ Vocabulary.php, line 26
Class
- Vocabulary
- Drupal 7 vocabularies source from database.
Namespace
Drupal\taxonomy\Plugin\migrate\source\d7Code
public function query() {
$query = $this->select('taxonomy_vocabulary', 'v')
->fields('v', [
'vid',
'name',
'description',
'hierarchy',
'module',
'weight',
'machine_name',
]);
return $query;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.