You are here

function workbench_permission in Workbench 7

Implements hook_permission().

File

./workbench.module, line 76
Workbench module file for editorial workspaces.

Code

function workbench_permission() {
  $permissions = array(
    'administer workbench' => array(
      'title' => t('Administer Workbench settings'),
    ),
    'access workbench' => array(
      'title' => t('Access My Workbench'),
    ),
  );
  return $permissions;
}