You are here

public function Vocabulary::query in Zircon Profile 8

Same name in this branch
  1. 8 core/modules/taxonomy/src/Plugin/migrate/source/d6/Vocabulary.php \Drupal\taxonomy\Plugin\migrate\source\d6\Vocabulary::query()
  2. 8 core/modules/taxonomy/src/Plugin/migrate/source/d7/Vocabulary.php \Drupal\taxonomy\Plugin\migrate\source\d7\Vocabulary::query()
Same name and namespace in other branches
  1. 8.0 core/modules/taxonomy/src/Plugin/migrate/source/d7/Vocabulary.php \Drupal\taxonomy\Plugin\migrate\source\d7\Vocabulary::query()

Return value

\Drupal\Core\Database\Query\SelectInterface

Overrides SqlBase::query

File

core/modules/taxonomy/src/Plugin/migrate/source/d7/Vocabulary.php, line 25
Contains \Drupal\taxonomy\Plugin\migrate\source\d7\Vocabulary.

Class

Vocabulary
Drupal 7 vocabularies source from database.

Namespace

Drupal\taxonomy\Plugin\migrate\source\d7

Code

public function query() {
  $query = $this
    ->select('taxonomy_vocabulary', 'v')
    ->fields('v', array(
    'vid',
    'name',
    'description',
    'hierarchy',
    'module',
    'weight',
    'machine_name',
  ));
  return $query;
}