| Versions | |
|---|---|
| 4.7 – 5 | menu_set_active_item($path = NULL) |
| 6 – 7 | menu_set_active_item($path) |
Set the active path, which determines which page is loaded.
$path A Drupal path - not a path alias.
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.
drupal/
<?php
function menu_set_active_item($path) {
$_GET['q'] = $path;
}
?>