You are here

public function AggregatorItem::fields in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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
Contains \Drupal\aggregator\Plugin\migrate\source\AggregatorItem.

Class

AggregatorItem
Drupal aggregator item source from database.

Namespace

Drupal\aggregator\Plugin\migrate\source

Code

public function fields() {
  return array(
    '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.'),
  );
}