function uc_store_perm in Ubercart 5
Same name and namespace in other branches
- 6.2 uc_store/uc_store.module \uc_store_perm()
Implementation of hook_perm().
File
- uc_store/
uc_store.module, line 448 - Contains global Ubercart functions and store administration functionality.
Code
function uc_store_perm() {
return array(
'administer store',
'view customers',
'view store reports',
);
}