function upload_perm in Drupal 6
Same name and namespace in other branches
- 4 modules/upload.module \upload_perm()
- 5 modules/upload/upload.module \upload_perm()
Implementation of hook_perm().
File
- modules/
upload/ upload.module, line 44 - File-handling and attaching files to nodes.
Code
function upload_perm() {
return array(
'upload files',
'view uploaded files',
);
}