| 5 menu.inc | menu_get_active_title() |
| 6 menu.inc | menu_get_active_title() |
| 7 menu.inc | menu_get_active_title() |
| 8 menu.inc | menu_get_active_title() |
Returns the title of the active menu item.
Related topics
1 call to menu_get_active_title()
1 string reference to 'menu_get_active_title'
File
- includes/
menu.inc, line 490 - API for the Drupal menu system.
Code
function menu_get_active_title() {
if ($mid = menu_get_active_nontask_item()) {
$item = menu_get_item($mid);
return $item['title'];
}
}
Login or register to post comments