NodeComplete.php in Drupal 10
Same filename in this branch
Same filename and directory in other branches
Namespace
Drupal\node\Plugin\migrate\source\d6File
core/modules/node/src/Plugin/migrate/source/d6/NodeComplete.phpView source
<?php
namespace Drupal\node\Plugin\migrate\source\d6;
/**
* Drupal 6 all node revisions source, including translation revisions.
*
* 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_node_complete",
* source_module = "node"
* )
*/
class NodeComplete extends NodeRevision {
/**
* The join options between the node and the node_revisions_table.
*/
const JOIN = 'n.nid = nr.nid';
/**
* {@inheritdoc}
*/
public function query() {
$query = parent::query();
$query
->orderBy('nr.vid');
return $query;
}
/**
* {@inheritdoc}
*/
public function getIds() {
return [
'nid' => [
'type' => 'integer',
'alias' => 'n',
],
'vid' => [
'type' => 'integer',
'alias' => 'nr',
],
'language' => [
'type' => 'string',
'alias' => 'n',
],
];
}
}
Classes
Name | Description |
---|---|
NodeComplete | Drupal 6 all node revisions source, including translation revisions. |