You are here

function easychart_permission in Easychart 7.3

Same name and namespace in other branches
  1. 7 easychart.module \easychart_permission()
  2. 7.2 easychart.module \easychart_permission()

Implements hook_permission().

File

./easychart.module, line 447
Easychart module file.

Code

function easychart_permission() {
  return array(
    'access full easychart configuration' => array(
      'title' => t('Allow using all Easychart customisation options.'),
    ),
    'administer Easychart settings' => array(
      'title' => t('Administer Easychart settings'),
      'description' => t('Configure default settings for the Easychart popup.'),
    ),
  );
}