You are here

function s3fs_permission in S3 File System 7.3

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

Implements hook_permission().

File

./s3fs.module, line 144
Hook implementations and other primary functionality for S3 File System.

Code

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