You are here

function user_badges_rules_condition_operator_options in User Badges 7.3

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

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

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

File

./user_badges.rules.inc, line 178

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