You are here

function feedapi_inherit_help in FeedAPI 5

Same name and namespace in other branches
  1. 6 feedapi_inherit/feedapi_inherit.module \feedapi_inherit_help()

Implementation of hook_help().

File

feedapi_inherit/feedapi_inherit.module, line 17
Inherit group 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 and organic group information from feed to feed items.');
    case 'feedapi/full_name':
      return t('FeedAPI Inherit - pass on taxonomy and organic group information from feed to feed items.');
  }
}