function webform_charts_permission in Webform Charts 7
Implements hook_permission().
File
- ./
webform_charts.module, line 10 - Enhances the "Analyze" section of Webform nodes with customizable charts.
Code
function webform_charts_permission() {
return array(
'configure webform component charts' => array(
'title' => t('Configure Webform component charts'),
'description' => t('Allows users to edit individual charts in the analysis tab of Webform-enabled node.'),
),
);
}