function RulesCondition::label

Overrides RulesAbstractPlugin::label

1 call to RulesCondition::label()
RulesCondition::executeCallback in includes/rules.plugins.inc
Execute the configured execution callback and log that.

File

includes/rules.plugins.inc, line 150

Class

RulesCondition
Implements a rules condition.

Code

public function label() {
    $label = parent::label();
    return $this->negate ? t('NOT !condition', array(
        '!condition' => $label,
    )) : $label;
}