drupal_help_arg
Definition
drupal_help_arg($arg = array())
includes/menu.inc, line 1152
Description
Generates elements for the $arg array in the help hook.
Related topics
| Name | Description |
|---|---|
| Menu system | Define the navigation menus, and route page requests to code based on URLs. |
Code
<?php
function drupal_help_arg($arg = array()) {
// Note - the number of empty elements should be > MENU_MAX_PARTS.
return $arg + array('', '', '', '', '', '', '', '', '', '', '', '');
}
?> 