You are here

function feeds_querypath_parser_feeds_plugins in Feeds QueryPath Parser 7

Same name and namespace in other branches
  1. 6 feeds_querypath_parser.module \feeds_querypath_parser_feeds_plugins()

Implements hook_feeds_plugins().

File

./feeds_querypath_parser.module, line 6

Code

function feeds_querypath_parser_feeds_plugins() {
  $info = array();
  $info['FeedsQueryPathParser'] = array(
    'name' => t('QueryPath parser'),
    'description' => t('Parse XML or HTML using QueryPath.'),
    'handler' => array(
      'parent' => 'FeedsParser',
      'class' => 'FeedsQueryPathParser',
      'file' => 'FeedsQueryPathParser.inc',
      'path' => drupal_get_path('module', 'feeds_querypath_parser'),
    ),
  );
  return $info;
}