You are here

function ace_editor_permission in Ace Code Editor 7

Implements hook_permission().

File

./ace_editor.module, line 29
Ace Editor module.

Code

function ace_editor_permission() {
  return array(
    'configure ace editor' => array(
      'title' => t('Configure Ace Editor'),
      'description' => t('Access the configuration page for Ace Editor.'),
      'restrict access' => TRUE,
    ),
  );
}