You are here

function total_control_theme in Total Control Admin Dashboard 6.2

Same name and namespace in other branches
  1. 7.2 total_control.module \total_control_theme()

Implementation of hook_theme().

Adds theme functions for the output of content panes.

File

./total_control.module, line 175

Code

function total_control_theme() {
  return array(
    'total_control_create' => array(
      'arguments' => array(
        'create' => array(),
      ),
      'file' => 'total_control.theme.inc',
    ),
    'total_control_overview' => array(
      'arguments' => array(
        'content' => array(),
        'users' => array(),
      ),
      'file' => 'total_control.theme.inc',
    ),
    'total_control_overview_content' => array(
      'arguments' => array(
        'overview' => array(),
      ),
      'file' => 'total_control.theme.inc',
    ),
    'total_control_overview_user' => array(
      'arguments' => array(
        'overview' => array(),
      ),
      'file' => 'total_control.theme.inc',
    ),
    'total_control_admin_table' => array(
      'arguments' => array(
        'header' => array(),
        'rows' => array(),
        'link' => FALSE,
      ),
      'file' => 'total_control.theme.inc',
    ),
  );
}