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 drupal/modules/user/user.module
Implements hook_block_view().

File

drupal/modules/user/user.module, line 1545
Enables the user registration and login system.

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,
  ));
}