You are here

function theme_cctags_user_block in cctags 6

1 theme call to theme_cctags_user_block()
cctags_block in ./cctags.module
implementation of hook_block

File

./cctags.module, line 876

Code

function theme_cctags_user_block($users, $amount, $more_link) {
  $count = $users['count'];
  unset($users['count']);
  $output .= '<div id="cctags-usercloud" class="cctags cctags-block cctags-users wrapper">';
  foreach ($users as $uid => $ccuser) {
    $output .= theme('cctags_user', $ccuser);
  }
  $output .= '</div>';
  if ($more_link && $count > $amount) {
    $output .= theme('cctags_user_more');
  }
  return $output;
}