function icon_menu_defaults in Icon API 7
Same name and namespace in other branches
- 8 modules/icon_menu/icon_menu.module \icon_menu_defaults()
Helper function to return the default icon menu values.
1 call to icon_menu_defaults()
- _icon_menu_form_alter in modules/
icon_menu/ icon_menu.module - Add the icon configuration to a menu item edit form.
File
- modules/
icon_menu/ icon_menu.module, line 24 - icon_menu.module Implements an API for icon providers and an administrative UI for integrating icons through out the site.
Code
function icon_menu_defaults() {
return array(
'bundle' => '',
'icon' => '',
'wrapper' => '',
'wrapper_class' => '',
'breadcrumb' => FALSE,
'position' => 'title_before',
'title_wrapper' => 0,
'title_wrapper_element' => 'span',
'title_wrapper_class' => 'title',
);
}