You are here

function stage_file_proxy_permission in Stage File Proxy 7

Implements hook_permission().

File

./stage_file_proxy.module, line 92
Stage File Proxy Module.

Code

function stage_file_proxy_permission() {
  return array(
    'administer stage_file_proxy settings' => array(
      'title' => t('Administer Stage File Proxy module'),
      'description' => t('Perform administration tasks for the Stage File Proxy module.'),
      'restrict access' => TRUE,
    ),
  );
}