function drupal_help_arg

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

Related topics

5 calls to drupal_help_arg()
HelpController::helpLinksAsList in drupal/core/modules/help/lib/Drupal/help/Controller/HelpController.php
Provides a formatted list of available help topics.
HelpController::helpPage in drupal/core/modules/help/lib/Drupal/help/Controller/HelpController.php
Prints a page listing general help for a module.
menu_get_active_help in drupal/core/includes/menu.inc
Returns the help associated with the active menu item.
system_modules in drupal/core/modules/system/system.admin.inc
Form constructor for the module enable/disable interface.
template_preprocess_search_results in drupal/core/modules/search/search.pages.inc
Prepares variables for search results templates.

File

drupal/core/includes/menu.inc, line 1709
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(
    '',
    '',
    '',
    '',
    '',
    '',
    '',
    '',
    '',
    '',
    '',
    '',
  );
}