feeds_querypath_parser.module in Feeds QueryPath Parser 6
File
feeds_querypath_parser.module
View source
<?php
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;
}
function feeds_querypath_parser_enable() {
cache_clear_all('plugins:feeds:plugins', 'cache');
}