function user_view in Drupal 4
Same name and namespace in other branches
- 8 core/modules/user/user.module \user_view()
- 5 modules/user/user.module \user_view()
- 6 modules/user/user.pages.inc \user_view()
- 7 modules/user/user.module \user_view()
1 string reference to 'user_view'
- user_menu in modules/
user.module - Implementation of hook_menu().
File
- modules/
user.module, line 1472 - Enables the user registration and login system.
Code
function user_view($uid = 0) {
global $user;
$account = user_load(array(
'uid' => $uid,
));
if ($account === FALSE || $account->access == 0 && !user_access('administer users')) {
return drupal_not_found();
}
// Retrieve and merge all profile fields:
$fields = array();
foreach (module_list() as $module) {
if ($data = module_invoke($module, 'user', 'view', '', $account)) {
foreach ($data as $category => $items) {
foreach ($items as $item) {
$item['class'] = "{$module}-" . $item['class'];
$fields[$category][] = $item;
}
}
}
}
drupal_set_title(check_plain($account->name));
return theme('user_profile', $account, $fields);
}