You are here

public function RulesListConditionsAll::label in Rules List Conditions 7

Returns the label of the element.

Overrides RulesPlugin::label

1 call to RulesListConditionsAll::label()
RulesListConditionsAll::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 137

Class

RulesListConditionsAll
An all loop.

Code

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