VocabularyPerType.php

Same filename in other branches
  1. 9 core/modules/taxonomy/src/Plugin/migrate/source/d6/VocabularyPerType.php
  2. 8.9.x core/modules/taxonomy/src/Plugin/migrate/source/d6/VocabularyPerType.php
  3. 11.x core/modules/taxonomy/src/Plugin/migrate/source/d6/VocabularyPerType.php

Namespace

Drupal\taxonomy\Plugin\migrate\source\d6

File

core/modules/taxonomy/src/Plugin/migrate/source/d6/VocabularyPerType.php

View source
<?php

namespace Drupal\taxonomy\Plugin\migrate\source\d6;

use Drupal\migrate\Row;
// cspell:ignore localizable

/**
 * Drupal 6 vocabularies with associated node types source from database.
 *
 * For available configuration keys, refer to the parent classes.
 *
 * @see \Drupal\migrate\Plugin\migrate\source\SqlBase
 * @see \Drupal\migrate\Plugin\migrate\source\SourcePluginBase
 *
 * @MigrateSource(
 *   id = "d6_taxonomy_vocabulary_per_type",
 *   source_module = "taxonomy"
 * )
 */
class VocabularyPerType extends Vocabulary {
    
    /**
     * {@inheritdoc}
     */
    public function query() {
        $query = parent::query();
        $query->join('vocabulary_node_types', 'nt', '[v].[vid] = [nt].[vid]');
        $query->fields('nt', [
            'type',
        ]);
        return $query;
    }
    
    /**
     * {@inheritdoc}
     */
    public function prepareRow(Row $row) {
        // Get the i18n taxonomy translation setting for this vocabulary.
        // 0 - No multilingual options
        // 1 - Localizable terms. Run through the localization system.
        // 2 - Predefined language for a vocabulary and its terms.
        // 3 - Per-language terms, translatable (referencing terms with different
        // languages) but not localizable.
        $i18ntaxonomy_vocab = $this->variableGet('i18ntaxonomy_vocabulary', []);
        $vid = $row->getSourceProperty('vid');
        $i18ntaxonomy_vocabulary = FALSE;
        if (array_key_exists($vid, $i18ntaxonomy_vocab)) {
            $i18ntaxonomy_vocabulary = $i18ntaxonomy_vocab[$vid];
        }
        $row->setSourceProperty('i18ntaxonomy_vocabulary', $i18ntaxonomy_vocabulary);
        return parent::prepareRow($row);
    }
    
    /**
     * {@inheritdoc}
     */
    public function getIds() {
        $ids['vid']['type'] = 'integer';
        $ids['vid']['alias'] = 'nt';
        $ids['type']['type'] = 'string';
        return $ids;
    }

}

Classes

Title Deprecated Summary
VocabularyPerType Drupal 6 vocabularies with associated node types source from database.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.