drupal_help_arg
- Versions
- 6 – 7
drupal_help_arg($arg = array())
Generates elements for the $arg array in the help hook.
Related topics
Code
includes/menu.inc, line 1454
<?php
function drupal_help_arg($arg = array()) {
// Note - the number of empty elements should be > MENU_MAX_PARTS.
return $arg + array('', '', '', '', '', '', '', '', '', '', '', '');
}
?>Login or register to post comments 