You are here

function workflow_extensions_permission in Workflow Extensions 7

Implements hook_permission().

File

./workflow_extensions.module, line 53
UI-related improvements to the Workflow module and tokens for Rules.

Code

function workflow_extensions_permission() {
  return array(
    'change workflow state via node edit form' => array(
      'title' => t('change workflow state via node edit form'),
      'description' => t(''),
    ),
    'edit workflow log' => array(
      'title' => t('edit workflow log'),
      'description' => t(''),
    ),
    'view workflow state change block even when state cannot be changed' => array(
      'title' => t('view workflow state change block even when state cannot be changed'),
      'description' => t(''),
    ),
  );
}