You are here

public function RulesState::unblock in Rules 7.2

Unblock a rules configuration from execution.

1 call to RulesState::unblock()
RulesState::mergeSaveVariables in includes/rules.state.inc
Merges info from the given state into the existing state.

File

includes/rules.state.inc, line 101
Contains the state and data related stuff.

Class

RulesState
The rules evaluation state.

Code

public function unblock($rules_config) {
  if (empty($rules_config->recursion) && $rules_config->id) {
    unset(self::$blocked[$rules_config->id]);
  }
}