drupal_help_arg

Definition

drupal_help_arg($arg = array())
drupal/includes/menu.inc, line 1273

Description

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

Related topics

Namesort iconDescription
Menu systemDefine the navigation menus, and route page requests to code based on URLs.

Code

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