29 lines
841 B
PHP
29 lines
841 B
PHP
<?php
|
|
/**
|
|
* @file
|
|
* materio_administration.features.menu_custom.inc
|
|
*/
|
|
|
|
/**
|
|
* Implements hook_menu_default_menu_custom().
|
|
*/
|
|
function materio_administration_menu_default_menu_custom() {
|
|
$menus = array();
|
|
|
|
// Exported menu: navigation.
|
|
$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.',
|
|
'language' => 'und',
|
|
'i18n_mode' => '0',
|
|
);
|
|
// Translatables
|
|
// Included for use with string extractors like potx.
|
|
t('Navigation');
|
|
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.');
|
|
|
|
|
|
return $menus;
|
|
}
|