You are here

function relation_feeds_feeds_plugins in Relation 7

Implements hook_feeds_plugins().

File

relation_feeds/relation_feeds.module, line 33
Relation feeds integration module.

Code

function relation_feeds_feeds_plugins() {
  $info['RelationFeedsProcessor'] = array(
    'name' => t('Relation processor'),
    'description' => t('Add and update relations.'),
    'help' => t('Create and update relations from parsed content.'),
    'handler' => array(
      'parent' => 'FeedsProcessor',
      'class' => 'RelationFeedsProcessor',
      'file' => 'RelationFeedsProcessor.inc',
      'path' => drupal_get_path('module', 'relation_feeds'),
    ),
  );
  return $info;
}