function pack_upload_permission in Pack & Upload 8
Same name and namespace in other branches
- 7 pack_upload.module \pack_upload_permission()
- 2.0.x pack_upload.module \pack_upload_permission()
Implements hook_permission().
File
- ./
pack_upload.module, line 11 - This is the main code file for pack and upload module.
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'),
),
);
}