function theme_user_list
Same name and namespace in other branches
- 7.x drupal-7.x/modules/user/user.module \theme_user_list()
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()
- user_block in drupal-6.x/
modules/ user/ user.module - Implementation of hook_block().
Archivo
- drupal-6.x/
modules/ user/ user.module, line 869 - Enables the user registration and login system.
Código
function theme_user_list($users, $title = NULL) {
if (!empty($users)) {
foreach ($users as $user) {
$items[] = theme('username', $user);
}
}
return theme('item_list', $items, $title);
}