You are here

function webform_protected_downloads_permission in Webform Protected Downloads 7

Implementation of hook_permission().

File

./webform_protected_downloads.module, line 156
This file contains hook declarations and functions for the Webform Protected Downloads module.

Code

function webform_protected_downloads_permission() {
  return array(
    'administer webform protected downloads' => array(
      'title' => t('Administer webform protected downloads'),
    ),
  );
}