You are here

function uc_coupon_workflow_permission in Ubercart Discount Coupons 7.3

Same name and namespace in other branches
  1. 7.2 uc_coupon_workflow/uc_coupon_workflow.module \uc_coupon_workflow_permission()

Implements hook_permission().

File

uc_coupon_workflow/uc_coupon_workflow.module, line 12
Discount coupon workflow.

Code

function uc_coupon_workflow_permission() {
  $perms = array(
    'suspend coupon workflow' => array(
      'title' => t('suspend coupon workflow'),
      'description' => t('Prevent configured coupon workflow rules from being executed.'),
    ),
  );
  return $perms;
}