You are here

function theme_total_control_admin_table in Total Control Admin Dashboard 7.2

Same name and namespace in other branches
  1. 6.2 total_control.theme.inc \theme_total_control_admin_table()
8 theme calls to theme_total_control_admin_table()
total_control_blocks_content_type_render in plugins/content_types/blocks.inc
Run-time rendering of the body of the block.
total_control_entityqueue_content_type_render in plugins/content_types/entityqueue.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_nodequeue_content_type_render in plugins/content_types/nodequeue.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 pane.

... See full list

File

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

Code

function theme_total_control_admin_table($variables) {
  $header = $variables['header'];
  $rows = $variables['rows'];
  $link = $variables['link'];
  $output = '<div class="total-control-panel-panes">';
  $output .= theme('table', array(
    'header' => $header,
    'rows' => $rows,
    'attributes' => array(
      'class' => array(
        'panels-manage',
      ),
    ),
  ));
  $output .= '  <div class="admin-page">' . $link . '</div>';
  $output .= '</div>';
  return $output;
}