function theme_user_list
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
1 theme call to theme_user_list()
- user_block_view in modules/
user/ user.module - Implements hook_block_view().
File
-
modules/
user/ user.module, line 1554
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,
));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.