You are here

function theme_total_control_create in Total Control Admin Dashboard 7.2

Same name and namespace in other branches
  1. 6.2 total_control.theme.inc \theme_total_control_create()
1 theme call to theme_total_control_create()
total_control_create_content_type_render in plugins/content_types/create.inc
Run-time rendering of the body of the pane.

File

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

Code

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