You are here

public function FeedsSyndicationParser::getMappingSources in Feeds 7.2

Same name and namespace in other branches
  1. 6 plugins/FeedsSyndicationParser.inc \FeedsSyndicationParser::getMappingSources()
  2. 7 plugins/FeedsSyndicationParser.inc \FeedsSyndicationParser::getMappingSources()

Return mapping sources.

At a future point, we could expose data type information here, storage systems like Data module could use this information to store parsed data automatically in fields with a correct field type.

Overrides FeedsParser::getMappingSources

File

plugins/FeedsSyndicationParser.inc, line 51
Contains FeedsSyndicationParser and related classes.

Class

FeedsSyndicationParser
Class definition for Common Syndication Parser.

Code

public function getMappingSources() {
  return array(
    'title' => array(
      'name' => t('Title'),
      'description' => t('Title of the feed item.'),
    ),
    'description' => array(
      'name' => t('Description'),
      'description' => t('Description of the feed item.'),
    ),
    'author_name' => array(
      'name' => t('Author name'),
      'description' => t('Name of the feed item\'s author.'),
    ),
    'timestamp' => array(
      'name' => t('Published date'),
      'description' => t('Published date as UNIX time GMT of the feed item.'),
    ),
    'url' => array(
      'name' => t('Item URL (link)'),
      'description' => t('URL of the feed item.'),
    ),
    'guid' => array(
      'name' => t('Item GUID'),
      'description' => t('Global Unique Identifier of the feed item.'),
    ),
    'tags' => array(
      'name' => t('Categories'),
      'description' => t('An array of categories that have been assigned to the feed item.'),
    ),
    'geolocations' => array(
      'name' => t('Geo Locations'),
      'description' => t('An array of geographic locations with a name and a position.'),
    ),
    'source:url' => array(
      'name' => t('Source: URL'),
      'description' => t('The URL of the RSS channel that the item came from.'),
    ),
    'source:title' => array(
      'name' => t('Source: Title'),
      'description' => t('The title of the RSS channel that the item came from.'),
    ),
  ) + parent::getMappingSources();
}