You are here

function sweaver_permission in Sweaver 7

Implements hook_permission().

File

./sweaver.module, line 41
Sweaver functions.

Code

function sweaver_permission() {
  return array(
    'configure sweaver' => array(
      'title' => t('Configure the editor, selectors, properties, types and other plugins.'),
    ),
    'use editor' => array(
      'title' => t('Use the front end editor.'),
    ),
  );
}