You are here

function rules_log_evaluation_finished in Rules 6

Checks whether every rule evaluation is finished

1 call to rules_log_evaluation_finished()
rules_invoke_rule_set in rules/rules.module
Invokes configured rules for the given rule set

File

rules/rules.module, line 775
Rules engine module

Code

function rules_log_evaluation_finished() {
  global $_rules_exec_log;
  $_rules_exec_log = array_filter($_rules_exec_log);
  return !is_array($_rules_exec_log) || count($_rules_exec_log) == 0;
}