function _menu_breadcrumb_default_menu in Menu Breadcrumb 6
Same name and namespace in other branches
- 7 menu_breadcrumb.module \_menu_breadcrumb_default_menu()
Default menu item. If the module is not yet configured, we only need this as a starting point. This determines the default weight and 'enabled' status for any new menus.
1 call to _menu_breadcrumb_default_menu()
- _menu_breadcrumb_get_menus in ./
menu_breadcrumb.module - Get the menu selection configuration.
File
- ./
menu_breadcrumb.module, line 61 - The main file for the menu_breadcrumb module.
Code
function _menu_breadcrumb_default_menu() {
return array(
'menu_breadcrumb_default_menu' => array(
'enabled' => 1,
'weight' => 0,
'type' => 'menu_breadcrumb_default_menu',
),
);
}