function RulesState::isBlocked

Returns whether a rules configuration should be blocked from execution.

File

includes/rules.state.inc, line 110

Class

RulesState
The rules evaluation state.

Code

public function isBlocked($rule_config) {
    return !empty($rule_config->id) && isset(self::$blocked[$rule_config->id]);
}