function statspro_theme in Statistics Pro 6.2
Same name and namespace in other branches
- 6 statspro.module \statspro_theme()
Implementation of hook_theme().
File
- ./
statspro.module, line 12 - Main module of Statistcs pro module
Code
function statspro_theme() {
return array(
'graphstat_filter_form' => array(
'arguments' => array(
'form' => NULL,
),
),
'graphstat_graph' => array(
'arguments' => array(
'url' => NULL,
'title' => '',
'description' => '',
'attributes' => array(),
),
),
'statspro_content' => array(
'arguments' => array(
'title',
'data',
),
),
'statspro_log' => array(
'arguments' => array(
'title',
'data',
),
),
'statspro_path_aggregator_list_form' => array(
'arguments' => array(
'form' => NULL,
),
),
);
}