1.20.x user.theme.inc | theme_user_list($variables) |
Returns HTML for a list of users.
Parameters
$variables: An associative array containing:
- 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.theme.inc, line 18 - Theme functions for the User module.
Code
function theme_user_list($variables) {
$users = $variables['users'];
$title = $variables['title'];
$items = array();
if (!empty($users)) {
foreach ($users as $user) {
$items[] = theme('username', array('account' => $user));
}
}
return theme('item_list', array('items' => $items, 'title' => $title));
}