function menu_get_active_item in Drupal 4
Same name and namespace in other branches
- 5 includes/menu.inc \menu_get_active_item()
Returns the ID of the active menu item.
Related topics
4 calls to menu_get_active_item()
- menu_execute_active_handler in includes/
menu.inc - Execute the handler associated with the active menu item.
- menu_get_active_help in includes/
menu.inc - Returns the help associated with the active menu item.
- menu_get_active_nontask_item in includes/
menu.inc - Returns the ID of the current menu item or, if the current item is a local task, the menu item to which this task is attached.
- _menu_get_active_trail in includes/
menu.inc - Returns an array with the menu items that lead to the current menu item.
File
- includes/
menu.inc, line 423 - API for the Drupal menu system.
Code
function menu_get_active_item() {
return menu_set_active_item();
}