You are here

function pack_upload_permission in Pack & Upload 7

Same name and namespace in other branches
  1. 8 pack_upload.module \pack_upload_permission()
  2. 2.0.x pack_upload.module \pack_upload_permission()

Implements hook_permission().

File

./pack_upload.module, line 30
This is the module file for pack and upload.

Code

function pack_upload_permission() {
  return array(
    'pack and upload' => array(
      'description' => t('This permission allow a user to upload packed files & assets to server and extract them to a specified directory.'),
      'title' => t('Use pack & upload'),
    ),
  );
}