You are here

function easychart_wysiwyg_permission in Easychart 7.3

Implements hook_permission().

File

modules/easychart_wysiwyg/easychart_wysiwyg.module, line 26
Easychart WYSIWYG integration.

Code

function easychart_wysiwyg_permission() {
  return array(
    'view easychart wysiwyg list' => array(
      'title' => t('View Easychart WYSIWYG list'),
      'description' => t('People with this permission will be allowed to access the view to embed charts in editors.'),
    ),
  );
}