| Versionen | |
|---|---|
| drupal6 – drupal7 | menu_overview_page() |
Menu callback which shows an overview page of all the custom menus and their descriptions.
modules/
<?php
function menu_overview_page() {
$result = db_query("SELECT * FROM {menu_custom} ORDER BY title");
$content = array();
while ($menu = db_fetch_array($result)) {
$menu['href'] = 'admin/build/menu-customize/' . $menu['menu_name'];
$menu['localized_options'] = array();
$menu['description'] = filter_xss_admin($menu['description']);
$content[] = $menu;
}
return theme('admin_block_content', $content);
}
?>
Kommentare
Kommentar hinzufügen