-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgnl_schema.features.menu_links.inc
96 lines (92 loc) · 2.42 KB
/
gnl_schema.features.menu_links.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?php
/**
* @file
* gnl_schema.features.menu_links.inc
*/
/**
* Implements hook_menu_default_menu_links().
*/
function gnl_schema_menu_default_menu_links() {
$menu_links = array();
// Exported menu link: main-menu_about-the-detroit-ledger:node/2
$menu_links['main-menu_about-the-detroit-ledger:node/2'] = array(
'menu_name' => 'main-menu',
'link_path' => 'node/2',
'router_path' => 'node/%',
'link_title' => 'About the Detroit Ledger',
'options' => array(
'attributes' => array(
'title' => '',
),
'identifier' => 'main-menu_about-the-detroit-ledger:node/2',
),
'module' => 'menu',
'hidden' => 0,
'external' => 0,
'has_children' => 0,
'expanded' => 0,
'weight' => -49,
'customized' => 0,
);
// Exported menu link: main-menu_organizations:orgs
$menu_links['main-menu_organizations:orgs'] = array(
'menu_name' => 'main-menu',
'link_path' => 'orgs',
'router_path' => 'orgs',
'link_title' => 'Organizations',
'options' => array(
'attributes' => array(
'title' => '',
),
'identifier' => 'main-menu_organizations:orgs',
),
'module' => 'menu',
'hidden' => 0,
'external' => 0,
'has_children' => 0,
'expanded' => 0,
'weight' => -50,
'customized' => 0,
);
// Exported menu link: main-menu_our-methods:node/3
$menu_links['main-menu_our-methods:node/3'] = array(
'menu_name' => 'main-menu',
'link_path' => 'node/3',
'router_path' => 'node/%',
'link_title' => 'Our Methods',
'options' => array(
'identifier' => 'main-menu_our-methods:node/3',
),
'module' => 'menu',
'hidden' => 0,
'external' => 0,
'has_children' => 0,
'expanded' => 0,
'weight' => -48,
'customized' => 0,
);
// Exported menu link: main-menu_transparency:node/1
$menu_links['main-menu_transparency:node/1'] = array(
'menu_name' => 'main-menu',
'link_path' => 'node/1',
'router_path' => 'node/%',
'link_title' => 'Transparency',
'options' => array(
'identifier' => 'main-menu_transparency:node/1',
),
'module' => 'menu',
'hidden' => 0,
'external' => 0,
'has_children' => 0,
'expanded' => 0,
'weight' => -47,
'customized' => 0,
);
// Translatables
// Included for use with string extractors like potx.
t('About the Detroit Ledger');
t('Organizations');
t('Our Methods');
t('Transparency');
return $menu_links;
}