user_view

5 user.module user_view($uid = 0)
6 user.pages.inc user_view($account)
7 user.module user_view($account, $view_mode = 'full', $langcode = NULL)
8 user.module user_view($account, $view_mode = 'full', $langcode = NULL)

1 string reference to 'user_view'

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);
}
Login or register to post comments