function uc_order_perm in Ubercart 5
Same name and namespace in other branches
- 6.2 uc_order/uc_order.module \uc_order_perm()
Implementation of hook_perm().
File
- uc_order/
uc_order.module, line 412
Code
function uc_order_perm() {
return array(
'view all orders',
'create orders',
'edit orders',
'delete orders',
'delete any order',
'administer order workflow',
);
}