You are here

function uc_coupon_purchase_permission in Ubercart Discount Coupons 7.3

Same name and namespace in other branches
  1. 7.2 uc_coupon_purchase/uc_coupon_purchase.module \uc_coupon_purchase_permission()

Implements hook_permission().

File

uc_coupon_purchase/uc_coupon_purchase.module, line 7

Code

function uc_coupon_purchase_permission() {
  return array(
    'view purchased coupons' => array(
      'title' => t('view purchased coupons'),
      'description' => t('View list of the coupons a user has purchased.'),
    ),
  );
}