function navbar_in_active_trail in Navbar 7
Checks whether an item is in the active trail.
Useful when using a menu generated by menu_tree_all_data() which does not set the 'in_active_trail' flag on items.
@todo Look at migrating to a menu system level function.
Return value
TRUE when path is in the active trail, FALSE if not.
File
- ./
navbar.module, line 601 - Administration navbar for quick access to top level administration items.
Code
function navbar_in_active_trail($path) {
$active_paths =& drupal_static(__FUNCTION__);
// Gather active paths.
if (!isset($active_paths)) {
$active_paths = array();
$trail = menu_get_active_trail();
foreach ($trail as $item) {
if (!empty($item['href'])) {
$active_paths[] = $item['href'];
}
}
}
return in_array($path, $active_paths);
}