function payment_numeric_comparison_operator_options in Payment 7
Returns an array of numerical comparison operators for use in Rules.
1 string reference to 'payment_numeric_comparison_operator_options'
- payment_rules_condition_info in ./
payment.rules.inc - Implements hook_rules_condition_info().
File
- ./
payment.ui.inc, line 1194 - The Payment user interface.
Code
function payment_numeric_comparison_operator_options() {
return array(
'<' => t('lesser than'),
'<=' => t('lesser than or equal to'),
'=' => t('equal to'),
'>=' => t('greater than or equal to'),
'>' => t('greater than'),
);
}