function theme_user_list in Drupal 5
Same name and namespace in other branches
- 4 modules/user.module \theme_user_list()
- 6 modules/user/user.module \theme_user_list()
- 7 modules/user/user.module \theme_user_list()
Make a list of users.
Parameters
$items an array with user objects. Should contain at least the name and uid:
Related topics
1 theme call to theme_user_list()
- user_block in modules/
user/ user.module - Implementation of hook_block().
File
- modules/
user/ user.module, line 691 - 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);
}