Same filename in this branch
  1. 10 core/modules/taxonomy/src/Entity/Term.php
  2. 10 core/modules/taxonomy/src/Plugin/migrate/source/d6/Term.php
  3. 10 core/modules/taxonomy/src/Plugin/migrate/source/d7/Term.php
Same filename and directory in other branches
  1. 8.9.x core/modules/taxonomy/src/Plugin/migrate/source/d6/Term.php
  2. 9 core/modules/taxonomy/src/Plugin/migrate/source/d6/Term.php

Namespace

Drupal\taxonomy\Plugin\migrate\source\d6

File

core/modules/taxonomy/src/Plugin/migrate/source/d6/Term.php
View source
<?php

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

use Drupal\migrate\Row;
use Drupal\migrate_drupal\Plugin\migrate\source\DrupalSqlBase;

// cspell:ignore trid

/**
 * Drupal 6 taxonomy term source from database.
 *
 * Available configuration keys:
 * - bundle: (optional) The taxonomy vocabulary (vid) to filter terms retrieved
 *   from the source - can be an integer or an array. If omitted, all terms are
 *   retrieved.
 *
 * Examples:
 *
 * @code
 * source:
 *   plugin: d6_taxonomy_term
 *   bundle: 0
 * @endcode
 *
 * In this example terms of vocabulary with 'vid' equal to 0 are retrieved from
 * the source database.
 *
 * @code
 * source:
 *   plugin: d6_taxonomy_term
 *   bundle: [1, 3, 5]
 * @endcode
 *
 * In this example terms of vocabularies with 'vid' one of 1, 3, 5 are retrieved
 * from the source database.
 *
 * For additional configuration keys, refer to the parent classes.
 *
 * @see \Drupal\migrate\Plugin\migrate\source\SqlBase
 * @see \Drupal\migrate\Plugin\migrate\source\SourcePluginBase
 *
 * @todo Support term_relation, term_synonym table if possible.
 *
 * @MigrateSource(
 *   id = "d6_taxonomy_term",
 *   source_module = "taxonomy"
 * )
 */
class Term extends DrupalSqlBase {

  /**
   * {@inheritdoc}
   */
  public function query() {
    $query = $this
      ->select('term_data', 'td')
      ->fields('td')
      ->distinct()
      ->orderBy('td.tid');
    if (isset($this->configuration['bundle'])) {
      $query
        ->condition('td.vid', (array) $this->configuration['bundle'], 'IN');
    }
    return $query;
  }

  /**
   * {@inheritdoc}
   */
  public function fields() {
    $fields = [
      'tid' => $this
        ->t('The term ID.'),
      'vid' => $this
        ->t('Existing term VID'),
      'name' => $this
        ->t('The name of the term.'),
      'description' => $this
        ->t('The term description.'),
      'weight' => $this
        ->t('Weight'),
      'parent' => $this
        ->t("The Drupal term IDs of the term's parents."),
    ];
    if (isset($this->configuration['translations'])) {
      $fields['language'] = $this
        ->t('The term language.');
      $fields['trid'] = $this
        ->t('Translation ID.');
    }
    return $fields;
  }

  /**
   * {@inheritdoc}
   */
  public function prepareRow(Row $row) {

    // Find parents for this row.
    $parents = $this
      ->select('term_hierarchy', 'th')
      ->fields('th', [
      'parent',
      'tid',
    ])
      ->condition('tid', $row
      ->getSourceProperty('tid'))
      ->execute()
      ->fetchCol();
    $row
      ->setSourceProperty('parent', $parents);
    return parent::prepareRow($row);
  }

  /**
   * {@inheritdoc}
   */
  public function getIds() {
    $ids['tid']['type'] = 'integer';
    return $ids;
  }

}

Classes

Namesort descending Description
Term Drupal 6 taxonomy term source from database.