You are here

function asset_feeds_feeds_plugins in Asset 7

Implements hook_feeds_plugins().

File

modules/asset_feeds/asset_feeds.module, line 19
Feeds module integration.

Code

function asset_feeds_feeds_plugins() {
  $info = array();
  $info['AssetFeedsProcessor'] = array(
    'name' => 'Asset processor',
    'description' => 'Create and update assets.',
    'help' => 'Create and update assets from parsed content.',
    'handler' => array(
      'parent' => 'FeedsProcessor',
      'class' => 'AssetFeedsProcessor',
      'file' => 'AssetFeedsProcessor.inc',
      'path' => drupal_get_path('module', 'asset_feeds'),
    ),
  );
  return $info;
}