function feedapi_node_help in FeedAPI 6
Same name and namespace in other branches
- 5 feedapi_node/feedapi_node.module \feedapi_node_help()
Implementation of hook_help().
File
- feedapi_node/
feedapi_node.module, line 12 - Handle how the feed items are represented as a content Handle the processing of the feed items
Code
function feedapi_node_help($path, $arg) {
switch ($path) {
case 'admin/help#feedapi_node':
return t('Processor for FeedAPI, transforms items into nodes.');
case 'feedapi/full_name':
return t('FeedAPI Node - create nodes from feed items');
}
}