You are here

function uc_coupon_perm in Ubercart Discount Coupons 5

Same name and namespace in other branches
  1. 6 uc_coupon.module \uc_coupon_perm()

Implementation of hook_perm().

File

./uc_coupon.module, line 133
Provides discount coupons for Ubercart.

Code

function uc_coupon_perm() {
  return array(
    'view store coupons',
    'manage store coupons',
    'coupon wholesale pricing',
  );
}