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'
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'),
  );
}