theme_user_list

5 user.module theme_user_list($users, $title = NULL)
6 user.module theme_user_list($users, $title = NULL)
7 user.module theme_user_list($variables)
8 user.module theme_user_list($variables)

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

1 theme call to theme_user_list()

File

modules/user/user.module, line 858
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);
}
Login or register to post comments