function menu_load
Same name and namespace in other branches
- 7.x drupal-7.x/modules/menu/menu.module \menu_load()
Load the data for a single custom menu.
Archivo
- drupal-6.x/
modules/ menu/ menu.module, line 192 - Allows administrators to customize the site navigation menu.
Código
function menu_load($menu_name) {
return db_fetch_array(db_query("SELECT * FROM {menu_custom} WHERE menu_name = '%s'", $menu_name));
}