Vocabulary.php in Drupal 10
File
core/modules/taxonomy/src/Plugin/migrate/source/d7/Vocabulary.php
View source
<?php
namespace Drupal\taxonomy\Plugin\migrate\source\d7;
use Drupal\migrate\Row;
use Drupal\migrate_drupal\Plugin\migrate\source\DrupalSqlBase;
class Vocabulary extends DrupalSqlBase {
public function query() {
$query = $this
->select('taxonomy_vocabulary', 'v')
->fields('v', [
'vid',
'name',
'description',
'hierarchy',
'module',
'weight',
'machine_name',
]);
return $query;
}
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.'),
];
}
public function prepareRow(Row $row) {
if ($this
->variableGet('forum_nav_vocabulary', 0) == $row
->getSourceProperty('vid')) {
$row
->setSourceProperty('forum_vocabulary', TRUE);
}
return parent::prepareRow($row);
}
public function getIds() {
$ids['vid']['type'] = 'integer';
return $ids;
}
}
Classes
Name |
Description |
Vocabulary |
Drupal 7 vocabularies source from database. |