Full ELMS Learning Network documentation
function theme_menu_admin_overview
×
Error message
User warning: The following module is missing from the file system: theme/theme. For information about how to fix this, see the documentation page. in _drupal_trigger_error_with_delayed_logging() (line 1156 of /var/www/html/elmsln_community/api.elmsln.org/includes/bootstrap.inc).cis7 menu.admin.inc | theme_menu_admin_overview($variables) |
cle7 menu.admin.inc | theme_menu_admin_overview($variables) |
elmsmedia7 menu.admin.inc | theme_menu_admin_overview($variables) |
icor7 menu.admin.inc | theme_menu_admin_overview($variables) |
meedjum_blog7 menu.admin.inc | theme_menu_admin_overview($variables) |
mooc7 menu.admin.inc | theme_menu_admin_overview($variables) |
Returns HTML for a menu title and description for the menu overview page.
Parameters
$variables: An associative array containing:
- title: The menu's title.
- description: The menu's description.
Related topics
1 theme call to theme_menu_admin_overview()
- menu_overview_page in modules/
menu/ menu.admin.inc - Menu callback which shows an overview page of all the custom menus and their descriptions.
2 string references to the theme hook from theme_menu_admin_overview()
Note: this list is generated by looking for the string for this theme hook, so it may include some references that are not actually using this theme hook.
- menu_overview_page in modules/
menu/ menu.admin.inc - Menu callback which shows an overview page of all the custom menus and their descriptions.
- menu_theme in modules/
menu/ menu.module - Implements hook_theme().
File
- modules/
menu/ menu.admin.inc, line 36 - Administrative page callbacks for menu module.
Code
function theme_menu_admin_overview($variables) {
$output = check_plain($variables['title']);
$output .= '<div class="description">' . filter_xss_admin($variables['description']) . '</div>';
return $output;
}