You are here

function user_badges_rules_condition_operator_options in User Badges 7.4

Same name and namespace in other branches
  1. 7.3 user_badges.rules.inc \user_badges_rules_condition_operator_options()

Options list callback for the operator parameter of the user badge count.

1 string reference to 'user_badges_rules_condition_operator_options'
user_badges_rules_condition_info in ./user_badges.rules.inc
Implements hook_rules_condition_info().

File

./user_badges.rules.inc, line 174
user_badges.rules.inc

Code

function user_badges_rules_condition_operator_options() {
  return array(
    '>' => t('Greater than'),
    '>=' => t('Greater than or equal'),
    '=' => t('Equal to'),
    '<=' => t('Less than or equal'),
    '<' => t('Less than'),
  );
}