public function RulesLoop::label in Rules 7.2
Returns the label of the element.
Overrides RulesPlugin::label
File
- includes/
rules.plugins.inc, line 744 - Contains plugin info and implementations not needed for rule evaluation.
Class
- RulesLoop
- A loop element.
Code
public function label() {
return !empty($this->label) ? $this->label : t('Loop');
}