function drupal_help_arg

7.x menu.inc drupal_help_arg($arg = array())
6.x menu.inc drupal_help_arg($arg = array())

Generates elements for the $arg array in the help hook.

Related topics

5 calls to drupal_help_arg()
help_links_as_list in drupal-6.x/modules/help/help.admin.inc
help_page in drupal-6.x/modules/help/help.admin.inc
Menu callback; prints a page listing general help for a module.
menu_get_active_help in drupal-6.x/includes/menu.inc
Returns the help associated with the active menu item.
search_view in drupal-6.x/modules/search/search.pages.inc
Menu callback; presents the search form and/or search results.
system_admin_by_module in drupal-6.x/modules/system/system.admin.inc
Menu callback; prints a listing of admin tasks for each installed module.

File

drupal-6.x/includes/menu.inc, line 1174
API for the Drupal menu system.

Code

function drupal_help_arg($arg = array()) {
  // Note - the number of empty elements should be > MENU_MAX_PARTS.
  return $arg + array('', '', '', '', '', '', '', '', '', '', '', '');
}