
| Current Path : /var/www/html1/testsite/web/core/modules/tracker/src/Plugin/migrate/source/d7/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html1/testsite/web/core/modules/tracker/src/Plugin/migrate/source/d7/TrackerNode.php |
<?php
namespace Drupal\tracker\Plugin\migrate\source\d7;
use Drupal\migrate_drupal\Plugin\migrate\source\DrupalSqlBase;
/**
* Drupal 7 tracker node source from database.
*
* @MigrateSource(
* id = "d7_tracker_node",
* source_module = "tracker"
* )
*/
class TrackerNode extends DrupalSqlBase {
/**
* {@inheritdoc}
*/
public function query() {
return $this->select('tracker_node', 'tn')->fields('tn');
}
/**
* {@inheritdoc}
*/
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.'),
];
}
/**
* {@inheritdoc}
*/
public function getIds() {
$ids['nid']['type'] = 'integer';
return $ids;
}
}