You are here

function s3fs_permission in S3 File System 7

Same name and namespace in other branches
  1. 7.3 s3fs.module \s3fs_permission()
  2. 7.2 s3fs.module \s3fs_permission()

Implements hook_permission().

File

./s3fs.module, line 102
Sets up the S3fsStreamWrapper class to be used as a Drupal file system.

Code

function s3fs_permission() {
  return array(
    'administer s3fs' => array(
      'title' => t('Administer S3 File System'),
    ),
  );
}