menu_set_active_item($path)
drupal/includes/menu.inc, line 1532
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.
$path A Drupal path - not a path alias.
| Name | Description |
|---|---|
| Menu system | Define the navigation menus, and route page requests to code based on URLs. |
function menu_set_active_item($path) {
$_GET['q'] = $path;
}