mirror of https://github.com/BOINC/boinc.git
23 lines
729 B
PHP
23 lines
729 B
PHP
<?php
|
|
|
|
/**
|
|
* Implementation of hook_menu_default_menu_custom().
|
|
*/
|
|
function boinc_standard_menu_default_menu_custom() {
|
|
$menus = array();
|
|
|
|
// Exported menu: menu-footer-links
|
|
$menus['menu-footer-links'] = array(
|
|
'menu_name' => 'menu-footer-links',
|
|
'title' => 'Footer links',
|
|
'description' => 'Auxiliary menu, typically at the bottom of the page in the footer, that includes links to content such as "about us" or "privacy policy" etc.',
|
|
);
|
|
// Translatables
|
|
// Included for use with string extractors like potx.
|
|
t('Auxiliary menu, typically at the bottom of the page in the footer, that includes links to content such as "about us" or "privacy policy" etc.');
|
|
t('Footer links');
|
|
|
|
|
|
return $menus;
|
|
}
|