forked from ding2/ding_frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ding_frontend.features.menu_custom.inc
54 lines (50 loc) · 1.45 KB
/
ding_frontend.features.menu_custom.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
/**
* @file
* ding_frontend.features.menu_custom.inc
*/
/**
* Implements hook_menu_default_menu_custom().
*/
function ding_frontend_menu_default_menu_custom() {
$menus = array();
// Exported menu: menu-footer-menu-1.
$menus['menu-footer-menu-1'] = array(
'menu_name' => 'menu-footer-menu-1',
'title' => 'Footer menu 1',
'description' => '',
);
// Exported menu: menu-footer-menu-2.
$menus['menu-footer-menu-2'] = array(
'menu_name' => 'menu-footer-menu-2',
'title' => 'Footer menu 2',
'description' => '',
);
// Exported menu: menu-footer-menu-3.
$menus['menu-footer-menu-3'] = array(
'menu_name' => 'menu-footer-menu-3',
'title' => 'Footer menu 3',
'description' => '',
);
// Exported menu: menu-footer-menu-4.
$menus['menu-footer-menu-4'] = array(
'menu_name' => 'menu-footer-menu-4',
'title' => 'Footer menu 4',
'description' => '',
);
// Exported menu: menu-tabs-menu.
$menus['menu-tabs-menu'] = array(
'menu_name' => 'menu-tabs-menu',
'title' => 'Topbar menu',
'description' => 'This menu is used to display tabs that let the user change between navigational elements.',
);
// Translatables
// Included for use with string extractors like potx.
t('Footer menu 1');
t('Footer menu 2');
t('Footer menu 3');
t('Footer menu 4');
t('This menu is used to display tabs that let the user change between navigational elements.');
t('Topbar menu');
return $menus;
}