public function AggregatorItem::fields in Drupal 8
Same name and namespace in other branches
- 9 core/modules/aggregator/src/Plugin/migrate/source/AggregatorItem.php \Drupal\aggregator\Plugin\migrate\source\AggregatorItem::fields()
Returns available fields on the source.
Return value
array Available fields in the source, keys are the field machine names as used in field mappings, values are descriptions.
Overrides MigrateSourceInterface::fields
File
- core/
modules/ aggregator/ src/ Plugin/ migrate/ source/ AggregatorItem.php, line 29
Class
- AggregatorItem
- Drupal 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.'),
];
}