You are here

protected function RulesListConditionsConditionalLoop::stateVariables in Rules List Conditions 7

Overridden to exclude variable assertions of negated conditions.

Overrides RulesConditionContainer::stateVariables

File

includes/rules_list_conditions.core.inc, line 118
Contains the base class for condition loops.

Class

RulesListConditionsConditionalLoop
Base class for condition loops.

Code

protected function stateVariables($element = NULL) {
  return array(
    $this->settings['item:var'] => $this
      ->listItemInfo(),
  ) + parent::stateVariables($element);
}