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/d7/Vocabulary.php \Drupal\taxonomy\Plugin\migrate\source\d7\Vocabulary::fields()

Overrides MigrateSourceInterface::fields

File

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

Class

Vocabulary
Drupal 6 vocabularies source from database.

Namespace

Drupal\taxonomy\Plugin\migrate\source\d6

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.'),
        'help' => $this->t('Help text to display for the vocabulary.'),
        'relations' => $this->t('Whether or not related terms are enabled within the vocabulary. (0 = disabled, 1 = enabled)'),
        'hierarchy' => $this->t('The type of hierarchy allowed within the vocabulary. (0 = disabled, 1 = single, 2 = multiple)'),
        'multiple' => $this->t('Whether or not multiple terms from this vocabulary may be assigned to a node. (0 = disabled, 1 = enabled)'),
        'required' => $this->t('Whether or not terms are required for nodes using this vocabulary. (0 = disabled, 1 = enabled)'),
        'tags' => $this->t('Whether or not free tagging is enabled for the vocabulary. (0 = disabled, 1 = enabled)'),
        'weight' => $this->t('The weight of the vocabulary in relation to other vocabularies.'),
        'parents' => $this->t("The Drupal term IDs of the term's parents."),
        'node_types' => $this->t('The names of the node types the vocabulary may be used with.'),
    ];
}

API Navigation

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