function AggregatorItem::fields

Same name and namespace in other branches
  1. 9 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 29

Class

AggregatorItem
Drupal aggregator item source from database.

Namespace

Drupal\aggregator\Plugin\migrate\source

Code

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.