- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
<?php
function test_menu() {
$menu['test'] = array(
'page callback' => 'test_page',
'access callback' => TRUE,
);
$menu['test/%user'] = array(
'page callback' => 'test_view',
'page arguments' => array(1),
'access callback' => TRUE,
);
return $menu;
}
function test_page() {
global $user;
if ($user->uid) {
menu_set_active_item("test/$user->uid");
return menu_execute_active_handler();
}
else {
drupal_goto('user/login');
}
}
function test_view($account) {
module_load_include('pages.inc', 'user');
return user_view($account);
}
Комментарии (0) RSS
Добавить комментарий