TrackerNode.php in Drupal 10
File
core/modules/tracker/src/Plugin/migrate/source/d7/TrackerNode.php
View source
<?php
namespace Drupal\tracker\Plugin\migrate\source\d7;
use Drupal\migrate_drupal\Plugin\migrate\source\DrupalSqlBase;
class TrackerNode extends DrupalSqlBase {
public function query() {
return $this
->select('tracker_node', 'tn')
->fields('tn');
}
public function fields() {
return [
'nid' => $this
->t('The {node}.nid this record tracks.'),
'published' => $this
->t('Boolean indicating whether the node is published.'),
'changed' => $this
->t('The Unix timestamp when the node was most recently saved or commented on.'),
];
}
public function getIds() {
$ids['nid']['type'] = 'integer';
return $ids;
}
}