| Versionen | |
|---|---|
| drupal6 – drupal7 | 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.
includes/
<?php
function menu_set_active_item($path) {
$_GET['q'] = $path;
}
?>
Kommentare
Kommentar hinzufügen