You are here

function theme_total_control_overview_user in Total Control Admin Dashboard 7.2

Same name and namespace in other branches
  1. 6.2 total_control.theme.inc \theme_total_control_overview_user()
1 theme call to theme_total_control_overview_user()
total_control_overview_user_content_type_render in plugins/content_types/overview_user.inc
Run-time rendering of the body of the block.

File

./total_control.theme.inc, line 43
Theme functions used in total control panel panes.

Code

function theme_total_control_overview_user($variables) {
  $overview = $variables['overview'];
  $output = '<div class="total-control-user-overview">';
  $output .= theme('item_list', array(
    'items' => $overview,
  ));
  $output .= '</div>';
  return $output;
}