You are here

function rules_user_condition_operations in Rules 7.2

Options list callback for the operation parameter of condition user has role.

Related topics

1 string reference to 'rules_user_condition_operations'
rules_user_condition_info in modules/user.rules.inc
Implements hook_rules_condition_info() on behalf of the user module.

File

modules/user.rules.inc, line 167
Rules integration for the user module.

Code

function rules_user_condition_operations() {
  return array(
    'AND' => t('all'),
    'OR' => t('any'),
  );
}