| Versions | |
|---|---|
| 4.7 – 5 | user_view( |
| 6 | user_view($account) |
| 7 | user_view($account, $view_mode = 'full', $langcode = NULL) |
modules/
<?php
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);
}
?>