function quant_theme in Quant 7
Same name and namespace in other branches
- 6 quant.module \quant_theme()
Implements hook_theme().
File
- ./
quant.module, line 75
Code
function quant_theme($existing, $type, $theme, $path) {
$items = array();
$items['quant_page'] = array(
'variables' => array(
'form' => NULL,
'charts' => NULL,
),
'file' => 'quant.theme.inc',
);
$items['quant_time_form'] = array(
'render element' => 'form',
'file' => 'quant.theme.inc',
);
$items['quant_table'] = array(
'arguments' => array(
'table' => NULL,
'title' => NULL,
'width' => NULL,
),
'path' => $path . '/theme',
'template' => 'quant_table',
);
return $items;
}