Full ELMS Learning Network documentation
function theme_admin_menu_icon
×
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 admin_menu.inc | theme_admin_menu_icon($variables) |
cle7 admin_menu.inc | theme_admin_menu_icon($variables) |
elmsmedia7 admin_menu.inc | theme_admin_menu_icon($variables) |
icor7 admin_menu.inc | theme_admin_menu_icon($variables) |
meedjum_blog7 admin_menu.inc | theme_admin_menu_icon($variables) |
mooc7 admin_menu.inc | theme_admin_menu_icon($variables) |
Renders an icon to display in the administration menu.
Related topics
1 theme call to theme_admin_menu_icon()
- admin_menu_links_icon in sites/
all/ modules/ ulmus/ admin_menu/ admin_menu.inc - Build icon menu links; mostly containing maintenance helpers.
2 string references to the theme hook from theme_admin_menu_icon()
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.
- admin_menu_links_icon in sites/
all/ modules/ ulmus/ admin_menu/ admin_menu.inc - Build icon menu links; mostly containing maintenance helpers.
- admin_menu_theme in sites/
all/ modules/ ulmus/ admin_menu/ admin_menu.module - Implements hook_theme().
File
- sites/
all/ modules/ ulmus/ admin_menu/ admin_menu.inc, line 1030 - Menu builder functions for Administration menu.
Code
function theme_admin_menu_icon($variables) {
return '<img class="admin-menu-icon" src="' . $variables['src'] . '" width="16" height="16" alt="' . $variables['alt'] . '" />';
}