You are here

function rules_debug_log_region in Rules 7.2

Returns the current region for the debug log.

1 call to rules_debug_log_region()
rules_page_build in ./rules.module
Implements hook_page_build() to add the rules debug log to the page bottom.

File

./rules.module, line 1355
Rules engine module.

Code

function rules_debug_log_region() {

  // If there is no setting for the current theme use the default theme setting.
  global $theme_key;
  $theme_default = variable_get('theme_default', 'bartik');
  return variable_get('rules_debug_region_' . $theme_key, variable_get('rules_debug_region_' . $theme_default, 'help'));
}