function feeds_querypath_parser_feeds_plugins in Feeds QueryPath Parser 6
Same name and namespace in other branches
- 7 feeds_querypath_parser.module \feeds_querypath_parser_feeds_plugins()
Implementation of 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;
}