You are here

function theme_total_control_admin_table in Total Control Admin Dashboard 6.2

Same name and namespace in other branches
  1. 7.2 total_control.theme.inc \theme_total_control_admin_table()
6 theme calls to theme_total_control_admin_table()
nodequeue_content_type_render in plugins/content_types/nodequeue.inc
Run-time rendering of the body of the block.
total_control_menus_content_type_render in plugins/content_types/menus.inc
Run-time rendering of the body of the block.
total_control_node_types_content_type_render in plugins/content_types/node_types.inc
Run-time rendering of the body of the block.
total_control_panel_pages_content_type_render in plugins/content_types/panel_pages.inc
Run-time rendering of the body of the block.
total_control_taxonomy_content_type_render in plugins/content_types/taxonomy.inc
Run-time rendering of the body of the block.

... See full list

File

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

Code

function theme_total_control_admin_table($header, $rows, $link) {
  $output = '<div class="total-control-nodequeues">';
  $output .= theme('table', $header, $rows);
  $output .= '<div class="admin-page">' . $link . '</div>';
  $output .= '</div>';
  return $output;
}