cms_core.features.menu_custom.inc in Glazed CMS Core 7
File
cms_core.features.menu_custom.inc
View source
<?php
function cms_core_menu_default_menu_custom() {
$menus = array();
$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['menu-footer-menu'] = array(
'menu_name' => 'menu-footer-menu',
'title' => 'Footer menu',
'description' => '',
);
t('Footer menu');
t('Main menu');
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.');
return $menus;
}