You are here

function uc_coupon_workflow_rules_condition_info in Ubercart Discount Coupons 7.3

Same name and namespace in other branches
  1. 7.2 uc_coupon_workflow/uc_coupon_workflow.rules.inc \uc_coupon_workflow_rules_condition_info()

Implements hook_rules_condition_info().

File

uc_coupon_workflow/uc_coupon_workflow.rules.inc, line 76
Rules integration for uc_coupon_workflow

Code

function uc_coupon_workflow_rules_condition_info() {
  $conditions['uc_coupon_workflow_suspended'] = array(
    'label' => t('Check if an administrator has suspended automatic coupon workflow for this request.'),
    'group' => t('Coupon'),
  );
  return $conditions;
}