function feedapi_inherit_help in FeedAPI 6
Same name and namespace in other branches
- 5 feedapi_inherit/feedapi_inherit.module \feedapi_inherit_help()
Implementation of hook_help().
File
- feedapi_inherit/
feedapi_inherit.module, line 17 - Inherit group language and taxonomy settings from feeds to news items This is an add on processor for FeedAPI
Code
function feedapi_inherit_help($section) {
switch ($section) {
case 'admin/help#feedapi_inherit':
return t('FeedAPI Inherit - pass on taxonomy, author, language and organic group information from feed to feed items.');
case 'feedapi/full_name':
return t('FeedAPI Inherit - pass on taxonomy, author, language and organic group information from feed to feed items.');
}
}