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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488 | <?php
function menu_example_menu() {
$items['menu_example'] = array(
'title' => 'Menu Example',
'description' => 'Simplest possible menu type, and the parent menu entry for others',
'page callback' => '_menu_example_basic_instructions',
'page arguments' => array(t('This page is displayed by the simplest (and base) menu example. Note that the title of the page is the same as the link title. You can also <a href="!link">visit a similar page with no menu link</a>. Also, note that there is a hook_menu_alter() example that has changed the path of one of the menu items.', array('!link' => url('menu_example/path_only')))),
'access callback' => TRUE,
'expanded' => TRUE,
);
$items['menu_example_alternate_menu'] = array(
'title' => 'Menu Example: Menu in alternate menu',
'menu_name' => 'primary-links',
'page callback' => '_menu_example_menu_page',
'page arguments' => array(t('This will be in the Primary Links menu instead of the default Navigation menu')),
'access callback' => TRUE,
);
$items['menu_example/permissioned'] = array(
'title' => 'Permissioned Example',
'page callback' => '_menu_example_menu_page',
'page arguments' => array(t('A menu item that requires the "access protected menu example" permission is at <a href="!link">menu_example/permissioned/controlled</a>', array('!link' => url('menu_example/permissioned/controlled')))),
'access callback' => TRUE,
'expanded' => TRUE,
);
$items['menu_example/permissioned/controlled'] = array(
'title' => 'Permissioned Menu Item',
'description' => 'This menu entry will not show and the page will not be accessible without the "access protected menu example" permission.',
'page callback' => '_menu_example_menu_page',
'page arguments' => array(t('This menu entry will not show and the page will not be accessible without the "access protected menu example" permission.')),
'access arguments' => array('access protected menu example'),
'weight' => 10,
);
$items['menu_example/path_only'] = array(
'title' => 'MENU_CALLBACK example',
'page callback' => '_menu_example_menu_page',
'page arguments' => array(t('A menu entry with no menu link (MENU_CALLBACK) is at <a href="!link">!link</a>', array('!link' => url('menu_example/path_only/callback')))),
'access callback' => TRUE,
'weight' => 20,
);
$items['menu_example/path_only/callback'] = array(
'type' => MENU_CALLBACK,
'title' => 'Callback Only',
'page callback' => '_menu_example_menu_page',
'page arguments' => array(t('The menu entry for this page is of type MENU_CALLBACK, so it provides only a path but not a link in the menu links, but it is the same in every other way to the simplest example.')),
'access callback' => TRUE,
);
$items['menu_example/tabs'] = array(
'title' => 'Tabs',
'description' => 'Shows how to create primary and secondary tabs',
'page callback' => '_menu_example_menu_page',
'page arguments' => array(t('This is the "tabs" menu entry.')),
'access callback' => TRUE,
'weight' => 30,
);
$items['menu_example/tabs/default'] = array(
'type' => MENU_DEFAULT_LOCAL_TASK,
'title' => t('Default primary tab'),
'weight' => 1,
);
foreach(array(t('second') => 2, t('third') => 3, t('fourth') => 4) as $tabname => $weight) {
$items["menu_example/tabs/$tabname"] = array(
'type' => MENU_LOCAL_TASK,
'title' => $tabname,
'page callback' => '_menu_example_menu_page',
'page arguments' => array(t('This is the tab "@tabname" in the "basic tabs" example', array('@tabname' => $tabname))),
'access callback' => TRUE,
'weight' => $weight,
);
}
$items['menu_example/tabs/default/first'] = array(
'type' => MENU_DEFAULT_LOCAL_TASK,
'title' => t('Default secondary tab'),
);
foreach(array(t('second'), t('third')) as $tabname) {
$items["menu_example/tabs/default/$tabname"] = array(
'type' => MENU_LOCAL_TASK,
'title' => $tabname,
'page callback' => '_menu_example_menu_page',
'page arguments' => array(t('This is the secondary tab "@tabname" in the "basic tabs" example "default" tab', array('@tabname' => $tabname))),
'access callback' => TRUE,
);
}
$items['menu_example/use_url_arguments'] = array(
'title' => 'Extra Arguments',
'description' => 'The page callback can use the arguments provided after the path used as key',
'page callback' => '_menu_example_menu_page',
'page arguments' => array(t('This page demonstrates using arguments in the path (portions of the path after "menu_example/url_arguments". For example, access it with <a href="!link1">!link1</a> or <a href="!link2">!link2</a>).', array('!link1' => url('menu_example/use_url_arguments/one/two'), '!link2' => url('menu_example/use_url_arguments/firstarg/secondarg')))),
'access callback' => TRUE,
'weight' => 40,
);
$items['menu_example/title_callbacks'] = array(
'title callback' => '_menu_example_simple_title_callback',
'title arguments' => array(t('Dynamic title: username=')),
'description' => 'The title of this menu item is dynamically generated',
'page callback' => '_menu_example_menu_page',
'page arguments' => array(t('The menu title is dynamically changed by the title callback')),
'access callback' => TRUE,
'weight' => 50,
);
$items['menu_example/placeholder_argument'] = array(
'title' => 'Placeholder Arguments',
'page callback' => '_menu_example_menu_page',
'page arguments' => array(t('Demonstrate placeholders by visiting <a href="!link">menu_example/placeholder_argument/3343/display</a>', array('!link' => url('menu_example/placeholder_argument/3343/display')))),
'access callback' => TRUE,
'weight' => 60,
);
$items['menu_example/placeholder_argument/%/display'] = array(
'title' => 'Placeholder Arguments',
'page callback' => '_menu_example_menu_page',
'page arguments' => array(2),
'access callback' => TRUE,
);
$items['menu_example/default_arg/%menu_example_arg_optional'] = array(
'title' => 'Processed Placeholder Arguments',
'page callback' => '_menu_example_menu_page',
'page arguments' => array(2), 'access callback' => TRUE,
'weight' => 70,
);
$items['menu_example/menu_original_path'] = array(
'title' => 'Menu path that will be altered by hook_menu_alter()',
'page callback' => '_menu_example_menu_page',
'page arguments' => array(t('This menu item was created strictly to allow the hook_menu_alter() function to have something to operate on. hook_menu defined the path as menu_example/menu_original_path. The hook_menu_alter() changes it to menu_example/menu_altered_path. You can try navigating to both paths and see what happens!')),
'access callback' => TRUE,
'weight' => 80,
);
return $items;
}
function _menu_example_basic_instructions($content = NULL) {
$base_content = t(
'This is the base page of the Menu Example. There are a number of examples
here, from the most basic (like this one) to extravagant mappings of loaded
placeholder arguments. Enjoy!');
return '<div>' . $base_content . '</div><br /><div>' . $content . '</div>';
}
function _menu_example_menu_page($content = NULL, $arg1 = NULL, $arg2 = NULL) {
$output = '<div>' . $content . '</div>';
if (!empty($arg1)) {
$output .= '<div>' . t('Argument 1=%arg', array('%arg' => $arg1)) . '</div>';
}
if (!empty($arg2)) {
$output .= '<div>' . t('Argument 2=%arg', array('%arg' => $arg2)) . '</div>';
}
return $output;
}
function menu_example_perm() {
return array('access protected menu example');
}
function _menu_example_mappings($id) {
$mapped_value = NULL;
static $mappings = array(
1 => 'one',
2 => 'two',
3 => 'three',
99 => 'jackpot! default',
);
if (isset($mappings[$id])) {
$mapped_value = $mappings[$id];
}
return $mapped_value;
}
function menu_example_id_load($id) {
$mapped_value = _menu_example_mappings($id);
if (!empty($mapped_value)) {
return t('Loaded value was %loaded', array('%loaded' => $mapped_value));
}
else {
return t('Sorry, the id %id was not found to be loaded', array('%id' => $id));
}
}
function menu_example_menu_alter(&$items) {
if (!empty($items['menu_example/menu_original_path'])) {
$items['menu_example/menu_altered_path'] = $items['menu_example/menu_original_path'];
$items['menu_example/menu_altered_path']['title'] = 'Menu item altered by hook_menu_alter()';
unset($items['menu_example/menu_original_path']);
}
if (!empty($items['user/%user_uid_optional'])) {
$items['user/%user_uid_optional']['title callback'] = 'menu_example_user_page_title';
}
}
function _menu_example_simple_title_callback($base_string) {
global $user;
$username = !empty($user->name) ? $user->name : t('anonymous');
return $base_string . ' ' . $username;
}
function menu_example_user_page_title($account) {
return t("@name's account", array('@name' => $account->name));
}
function menu_example_menu_link_alter(&$item, $menu) {
if ($item['link_path'] == 'devel/cache/clear') {
$item['link_title'] = 'Clear Cache';
};
}
function menu_example_arg_optional_load($id) {
$mapped_value = _menu_example_mappings($id);
if (!empty($mapped_value)) {
return t('Loaded value was %loaded', array('%loaded' => $mapped_value));
}
else {
return t('Sorry, the id %id was not found to be loaded', array('%id' => $id));
}
}
function menu_example_arg_optional_to_arg($arg) {
return (empty($arg) || $arg == '%') ? 99 : $arg;
}
|