Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Vocabulary.php

function Vocabulary::query

Same name in this branch
  1. 11.1.x core/modules/taxonomy/src/Plugin/migrate/source/d7/Vocabulary.php \Drupal\taxonomy\Plugin\migrate\source\d7\Vocabulary::query()

Overrides SqlBase::query

2 calls to Vocabulary::query()
VocabularyPerType::query in core/modules/taxonomy/src/Plugin/migrate/source/d6/VocabularyPerType.php
VocabularyPerType::query in core/modules/taxonomy/src/Plugin/migrate/source/d6/VocabularyPerType.php
1 method overrides Vocabulary::query()
VocabularyPerType::query in core/modules/taxonomy/src/Plugin/migrate/source/d6/VocabularyPerType.php

File

core/modules/taxonomy/src/Plugin/migrate/source/d6/Vocabulary.php, line 27

Class

Vocabulary
Drupal 6 vocabularies source from database.

Namespace

Drupal\taxonomy\Plugin\migrate\source\d6

Code

public function query() {
    $query = $this->select('vocabulary', 'v')
        ->fields('v', [
        'vid',
        'name',
        'description',
        'help',
        'relations',
        'hierarchy',
        'multiple',
        'required',
        'tags',
        'module',
        'weight',
    ]);
    return $query;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal