Term.php
Same filename in this branch
Same filename in other branches
- 8.9.x core/modules/taxonomy/src/Entity/Term.php
- 8.9.x core/modules/taxonomy/src/Plugin/views/argument_validator/Term.php
- 8.9.x core/modules/taxonomy/src/Plugin/migrate/source/d6/Term.php
- 8.9.x core/modules/taxonomy/src/Plugin/migrate/source/Term.php
- 8.9.x core/modules/taxonomy/src/Plugin/migrate/source/d7/Term.php
- 10 core/modules/taxonomy/src/Entity/Term.php
- 10 core/modules/taxonomy/src/Plugin/migrate/source/d6/Term.php
- 10 core/modules/taxonomy/src/Plugin/migrate/source/d7/Term.php
- 11.x core/modules/taxonomy/src/Entity/Term.php
- 11.x core/modules/taxonomy/src/Plugin/migrate/source/d6/Term.php
- 11.x core/modules/taxonomy/src/Plugin/migrate/source/d7/Term.php
Namespace
Drupal\taxonomy\Plugin\migrate\source\d6File
-
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;
/**
* 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
Title | Deprecated | Summary |
---|---|---|
Term | Drupal 6 taxonomy term source from database. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.