Same name and namespace in other branches
  1. 4.6.x modules/user.module \theme_user_list()
  2. 4.7.x modules/user.module \theme_user_list()
  3. 5.x modules/user/user.module \theme_user_list()
  4. 7.x modules/user/user.module \theme_user_list()

Make a list of users.

Parameters

$users: An array with user objects. Should contain at least the name and uid.

$title: (optional) Title to pass on to theme_item_list().

Related topics

File

modules/user/user.module, line 876
Enables the user registration and login system.

Code

function theme_user_list($users, $title = NULL) {
  if (!empty($users)) {
    foreach ($users as $user) {
      $items[] = theme('username', $user);
    }
  }
  return theme('item_list', $items, $title);
}