You are here

function theme_total_control_overview_content in Total Control Admin Dashboard 6.2

Same name and namespace in other branches
  1. 7.2 total_control.theme.inc \theme_total_control_overview_content()
1 theme call to theme_total_control_overview_content()
total_control_overview_content_content_type_render in plugins/content_types/overview_content.inc
Run-time rendering of the body of the block.

File

./total_control.theme.inc, line 26
Theme functions.

Code

function theme_total_control_overview_content($overview) {
  $output = '<div class="total-control-content-overview">';
  $output .= theme('item_list', $overview);
  $output .= '</div>';
  return $output;
}