You are here

function context_reaction_debug::options_form in Context 7.3

Same name and namespace in other branches
  1. 6.3 plugins/context_reaction_debug.inc \context_reaction_debug::options_form()
  2. 6 plugins/context_reaction_debug.inc \context_reaction_debug::options_form()

Overrides context_reaction::options_form

File

plugins/context_reaction_debug.inc, line 7

Class

context_reaction_debug
Output context debug information.

Code

function options_form($context) {
  return array(
    'debug' => array(
      '#type' => 'value',
      '#value' => TRUE,
    ),
  );
}