| 7 menu.inc | menu_tree_get_path($menu_name) |
| 8 menu.inc | menu_tree_get_path($menu_name) |
Get the path for determining the active trail of the specified menu tree.
Parameters
$menu_name: The menu name of the requested tree.
Return value
A string containing the path. If no path has been specified with menu_tree_set_path(), NULL is returned.
Related topics
1 call to menu_tree_get_path()
File
- includes/
menu.inc, line 1184 - API for the Drupal menu system.
Code
function menu_tree_get_path($menu_name) {
return menu_tree_set_path($menu_name);
}
Login or register to post comments