You are here

public function AggregatorItem::fields in Drupal 9

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

Class

AggregatorItem
Drupal 6/7 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.'),
  ];
}