menu_link_load

Versions
6 – 7
menu_link_load($mlid)

Get a menu link by its mlid, access checked and link translated for rendering.

This function should never be called from within node_load() or any other function used as a menu object load function since an infinite recursion may occur.

Parameters

$mlid The mlid of the menu item.

Return value

A menu link, with $item['access'] filled and link translated for rendering.

Related topics

▾ 3 functions call menu_link_load()

menu_edit_menu_submit in modules/menu/menu.admin.inc
Submit function for adding or editing a custom menu.
menu_nodeapi in modules/menu/menu.module
Implementation of hook_nodeapi().
_menu_delete_item in includes/menu.inc
Helper function for menu_link_delete; deletes a single menu link.

Code

includes/menu.inc, line 1648

<?php
function menu_link_load($mlid) {
  if (is_numeric($mlid) && $item = db_fetch_array(db_query("SELECT m.*, ml.* FROM {menu_links} ml LEFT JOIN {menu_router} m ON m.path = ml.router_path WHERE ml.mlid = %d", $mlid))) {
    _menu_link_translate($item);
    return $item;
  }
  return FALSE;
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.