function webform_charts_theme in Webform Charts 7
Implements hook_theme().
File
- ./
webform_charts.module, line 22 - Enhances the "Analyze" section of Webform nodes with customizable charts.
Code
function webform_charts_theme() {
$theme = array(
'webform_charts_edit_chart' => array(
'render element' => 'form',
'file' => 'includes/webform_charts.pages.inc',
),
'webform_charts_colors_element' => array(
'render element' => 'element',
'file' => 'includes/webform_charts.pages.inc',
),
);
return $theme;
}