You are here

function commerce_registration_comparison_operators in Commerce Registration 7.3

Rules helper. Return options list of comparison operators.

1 string reference to 'commerce_registration_comparison_operators'
commerce_registration_rules_condition_info in ./commerce_registration.rules.inc
Implements hook_rules_condition_info().

File

./commerce_registration.rules.inc, line 367
Commerce Registration rules file.

Code

function commerce_registration_comparison_operators() {
  return array(
    '=' => t('equal to'),
    '>' => t('greater than'),
    '>=' => t('greater than or equal to'),
    '<' => t('less than'),
    '<=' => t('less than or equal to'),
    '!=' => t('not equal to'),
  );
}