You are here

function workbench_media_permission in Workbench Media 7

Same name and namespace in other branches
  1. 7.2 workbench_media.module \workbench_media_permission()

Implements hook_permission().

File

./workbench_media.module, line 32
Workbench Media module file for workbench-specific media features.

Code

function workbench_media_permission() {
  return array(
    'use workbench_media add form' => array(
      'title' => t('Use the media add form'),
    ),
  );
}