theme_user_list
- Versions
- 4.6
theme_user_list($items, $title = NULL)- 4.7 – 6
theme_user_list($users,$title= NULL)- 7
theme_user_list($variables)
Make 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
Code
modules/user/user.module, line 1285
<?php
function theme_user_list($variables) {
$users = $variables['users'];
$title = $variables['title'];
if (!empty($users)) {
foreach ($users as $user) {
$items[] = theme('username', array('account' => $user));
}
}
return theme('item_list', array('items' => $items, 'title' => $title));
}
?>Login or register to post comments 