function theme_total_control_overview_content in Total Control Admin Dashboard 7.2
Same name and namespace in other branches
- 6.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 30 - Theme functions used in total control panel panes.
Code
function theme_total_control_overview_content($variables) {
$overview = $variables['overview'];
$output = '<div class="total-control-content-overview">';
$output .= theme('item_list', array(
'items' => $overview,
));
$output .= '</div>';
return $output;
}