menu_in_active_trail($mid)
drupal-5/includes/menu.inc, line 558
Returns TRUE when the menu item is in the active trail.
| Name | Description |
|---|---|
| Menu system | Define the navigation menus, and route page requests to code based on URLs. |
<?php
function menu_in_active_trail($mid) {
$trail = _menu_get_active_trail();
return in_array($mid, $trail);
}
?>