function AggregatorItem::fields
Same name in other branches
- 8.9.x core/modules/aggregator/src/Plugin/migrate/source/AggregatorItem.php \Drupal\aggregator\Plugin\migrate\source\AggregatorItem::fields()
Overrides MigrateSourceInterface::fields
File
-
core/
modules/ aggregator/ src/ Plugin/ migrate/ source/ AggregatorItem.php, line 34
Class
- AggregatorItem
- Drupal 6/7 aggregator item source from database.
Namespace
Drupal\aggregator\Plugin\migrate\sourceCode
public function fields() {
return [
'iid' => $this->t('Primary Key: Unique ID for feed item.'),
'fid' => $this->t('The {aggregator_feed}.fid to which this item belongs.'),
'title' => $this->t('Title of the feed item.'),
'link' => $this->t('Link to the feed item.'),
'author' => $this->t('Author of the feed item.'),
'description' => $this->t('Body of the feed item.'),
'timestamp' => $this->t('Post date of feed item, as a Unix timestamp.'),
'guid' => $this->t('Unique identifier for the feed item.'),
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.