function quant_theme in Quant 6
Same name and namespace in other branches
- 7 quant.module \quant_theme()
Implementation of hook_theme()
File
- ./
quant.module, line 56
Code
function quant_theme() {
$path = drupal_get_path('module', 'quant') . '/includes';
$items = array();
$items['quant_page'] = array(
'arguments' => array(
'form' => NULL,
'charts' => NULL,
),
'file' => 'theme.inc',
'path' => $path,
);
$items['quant_time_form'] = array(
'arguments' => array(
'form' => NULL,
),
'file' => 'theme.inc',
'path' => $path,
);
return $items;
}