Issues (1834)

boinc_standard.features.menu_custom.inc (1 issue)

1
<?php
2
3
/**
4
 * Implementation of hook_menu_default_menu_custom().
5
 */
6
function boinc_standard_menu_default_menu_custom() {
7
  $menus = array();
8
9
  // Exported menu: menu-footer-links
10
  $menus['menu-footer-links'] = array(
11
    'menu_name' => 'menu-footer-links',
12
    'title' => 'Footer links',
13
    '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.',
14
  );
15
  // Translatables
16
  // Title and description for footer menu appears in admin menu: Admin> Site Building> Menus
17
  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.');
18
  t('Footer links');
19
0 ignored issues
show
Functions must not contain multiple empty lines in a row; found 2 empty lines
Loading history...
20
21
  return $menus;
22
}
23