feature_menu.features.menu_custom.inc in Brainstorm profile 7
File
modules/features/feature_menu/feature_menu.features.menu_custom.inc
View source
<?php
function feature_menu_menu_default_menu_custom() {
$menus = array();
$menus['devel'] = array(
'menu_name' => 'devel',
'title' => 'Development',
'description' => 'Development link',
);
$menus['features'] = array(
'menu_name' => 'features',
'title' => 'Features',
'description' => 'Menu items for any enabled features.',
);
$menus['main-menu'] = array(
'menu_name' => 'main-menu',
'title' => 'Main menu',
'description' => 'The <em>Main</em> menu is used on many sites to show the major sections of the site, often in a top navigation bar.',
);
$menus['management'] = array(
'menu_name' => 'management',
'title' => 'Management',
'description' => 'The <em>Management</em> menu contains links for administrative tasks.',
);
$menus['navigation'] = array(
'menu_name' => 'navigation',
'title' => 'Navigation',
'description' => 'The <em>Navigation</em> menu contains links intended for site visitors. Links are added to the <em>Navigation</em> menu automatically by some modules.',
);
$menus['user-menu'] = array(
'menu_name' => 'user-menu',
'title' => 'User menu',
'description' => 'The <em>User</em> menu contains links related to the user\'s account, as well as the \'Log out\' link.',
);
t('Development');
t('Development link');
t('Features');
t('Main menu');
t('Management');
t('Menu items for any enabled features.');
t('Navigation');
t('The <em>Main</em> menu is used on many sites to show the major sections of the site, often in a top navigation bar.');
t('The <em>Management</em> menu contains links for administrative tasks.');
t('The <em>Navigation</em> menu contains links intended for site visitors. Links are added to the <em>Navigation</em> menu automatically by some modules.');
t('The <em>User</em> menu contains links related to the user\'s account, as well as the \'Log out\' link.');
t('User menu');
return $menus;
}