menu_set_active_item
- Versions
- 4.6 – 5
menu_set_active_item($path = NULL)- 6 – 7
menu_set_active_item($path)
Set the active path, which determines which page is loaded.
Note that this may not have the desired effect unless invoked very early in the page load, such as during hook_boot, or unless you call menu_execute_active_handler() to generate your page output.
Parameters
$path A Drupal path - not a path alias.
Related topics
Code
includes/menu.inc, line 1500
<?php
function menu_set_active_item($path) {
$_GET['q'] = $path;
}
?>Login or register to post comments 