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

Breadcrumb

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

function Vocabulary::fields

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

Overrides MigrateSourceInterface::fields

4 calls to Vocabulary::fields()
LanguageContentSettingsTaxonomyVocabulary::fields in core/modules/language/src/Plugin/migrate/source/d7/LanguageContentSettingsTaxonomyVocabulary.php
Returns available fields on the source.
LanguageContentSettingsTaxonomyVocabulary::fields in core/modules/language/src/Plugin/migrate/source/d7/LanguageContentSettingsTaxonomyVocabulary.php
Returns available fields on the source.
VocabularyTranslation::fields in core/modules/taxonomy/src/Plugin/migrate/source/d7/VocabularyTranslation.php
Returns available fields on the source.
VocabularyTranslation::fields in core/modules/taxonomy/src/Plugin/migrate/source/d7/VocabularyTranslation.php
Returns available fields on the source.
2 methods override Vocabulary::fields()
LanguageContentSettingsTaxonomyVocabulary::fields in core/modules/language/src/Plugin/migrate/source/d7/LanguageContentSettingsTaxonomyVocabulary.php
Returns available fields on the source.
VocabularyTranslation::fields in core/modules/taxonomy/src/Plugin/migrate/source/d7/VocabularyTranslation.php
Returns available fields on the source.

File

core/modules/taxonomy/src/Plugin/migrate/source/d7/Vocabulary.php, line 43

Class

Vocabulary
Drupal 7 vocabularies source from database.

Namespace

Drupal\taxonomy\Plugin\migrate\source\d7

Code

public function fields() {
    return [
        'vid' => $this->t('The vocabulary ID.'),
        'name' => $this->t('The name of the vocabulary.'),
        'description' => $this->t('The description of the vocabulary.'),
        'hierarchy' => $this->t('The type of hierarchy allowed within the vocabulary. (0 = disabled, 1 = single, 2 = multiple)'),
        'module' => $this->t('Module responsible for the vocabulary.'),
        'weight' => $this->t('The weight of the vocabulary in relation to other vocabularies.'),
        'machine_name' => $this->t('Unique machine name of the vocabulary.'),
    ];
}

API Navigation

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