You are here

function bueditor_permission in BUEditor 7

Implements hook_permission().

File

./bueditor.module, line 49
Implements the necessary hooks for the editor to work properly.

Code

function bueditor_permission() {
  return array(
    'administer bueditor' => array(
      'title' => t('Administer BUEditor'),
      'restrict access' => TRUE,
    ),
  );
}