function feeds_xpathparser_hook_info in Feeds XPath Parser 7
Same name and namespace in other branches
- 8 feeds_xpathparser.module \feeds_xpathparser_hook_info()
Implements hook_hook_info().
File
- ./
feeds_xpathparser.module, line 45 - Parse an XML or HTML document using XPath.
Code
function feeds_xpathparser_hook_info() {
$hooks = array();
$hooks['feeds_xpathparser_filter_domnode'] = array(
'group' => 'feeds_xpathparser',
);
return $hooks;
}