WineTerm.php in Migrate Plus 8.2
File
migrate_example_advanced/src/Plugin/migrate/source/WineTerm.php
View source
<?php
namespace Drupal\migrate_example_advanced\Plugin\migrate\source;
use Drupal\migrate\Plugin\migrate\source\SqlBase;
class WineTerm extends SqlBase {
public function query() {
return $this
->select('migrate_example_advanced_categories', 'wc')
->fields('wc', [
'categoryid',
'type',
'name',
'details',
'category_parent',
'ordering',
])
->orderBy('category_parent', 'ASC');
}
public function fields() {
$fields = [
'categoryid' => $this
->t('Unique ID of the category'),
'type' => $this
->t('Category type corresponding to Drupal vocabularies'),
'name' => $this
->t('Category name'),
'details' => $this
->t('Description of the category'),
'category_parent' => $this
->t('ID of the parent category'),
'ordering' => $this
->t('Order in which to display this category'),
];
return $fields;
}
public function getIds() {
return [
'categoryid' => [
'type' => 'integer',
],
];
}
}
Classes
Name |
Description |
WineTerm |
A straight-forward SQL-based source plugin, to retrieve category data from
the source database. |