function total_control_theme in Total Control Admin Dashboard 7.2
Same name and namespace in other branches
- 6.2 total_control.module \total_control_theme()
Implements hook_theme().
Adds theme functions for the output of content panes.
File
- ./
total_control.module, line 170
Code
function total_control_theme() {
return array(
'total_control_create' => array(
'variables' => array(
'create' => array(),
),
'file' => 'total_control.theme.inc',
),
'total_control_overview' => array(
'variables' => array(
'content' => array(),
'users' => array(),
),
'file' => 'total_control.theme.inc',
),
'total_control_overview_content' => array(
'variables' => array(
'overview' => array(),
),
'file' => 'total_control.theme.inc',
),
'total_control_overview_user' => array(
'variables' => array(
'overview' => array(),
),
'file' => 'total_control.theme.inc',
),
'total_control_admin_table' => array(
'variables' => array(
'header' => array(),
'rows' => array(),
'link' => FALSE,
),
'file' => 'total_control.theme.inc',
),
);
}