You are here

function upload_perm in Drupal 4

Same name and namespace in other branches
  1. 5 modules/upload/upload.module \upload_perm()
  2. 6 modules/upload/upload.module \upload_perm()

Implementation of hook_perm().

File

modules/upload.module, line 36
File-handling and attaching files to nodes.

Code

function upload_perm() {
  return array(
    'upload files',
    'view uploaded files',
  );
}