You are here

public function RulesListConditionsAny::label in Rules List Conditions 7

Returns the label of the element.

Overrides RulesPlugin::label

1 call to RulesListConditionsAny::label()
RulesListConditionsAny::evaluate in includes/rules_list_conditions.plugins.inc
Evaluate the element on a given rules evaluation state.

File

includes/rules_list_conditions.plugins.inc, line 72

Class

RulesListConditionsAny
An any loop.

Code

public function label() {
  return !empty($this->label) ? $this->label : ($this->negate ? t('NOT ANY') : t('ANY'));
}