You are here

function uc_order_perm in Ubercart 6.2

Same name and namespace in other branches
  1. 5 uc_order/uc_order.module \uc_order_perm()

Implements hook_perm().

File

uc_order/uc_order.module, line 544

Code

function uc_order_perm() {
  return array(
    'view own orders',
    'view all orders',
    'create orders',
    'edit orders',
    'delete orders',
    'unconditionally delete orders',
    'administer order workflow',
  );
}