You are here

function uc_file_perm in Ubercart 5

Same name and namespace in other branches
  1. 6.2 uc_file/uc_file.module \uc_file_perm()

Implementation of hook_perm().

File

uc_file/uc_file.module, line 94
Allows products to be associated with downloadable files.

Code

function uc_file_perm() {
  return array(
    'download file',
    'view all downloads',
  );
}