forked from atkphpframework/achievo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
debugger.php
44 lines (36 loc) · 1.1 KB
/
debugger.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
/**
* This file is part of the Achievo ATK distribution.
* Detailed copyright and licensing information can be found
* in the doc/COPYRIGHT and doc/LICENSE files which should be
* included in the distribution.
*
* This file is the skeleton dispatcher file, which you can copy
* to your application dir and modify if necessary. By default, it
* checks the $atknodetype and $atkaction postvars and creates the
* node and dispatches the action.
*
* @package atk
* @subpackage skel
*
* @author Ivo Jansch <[email protected]>
*
* @copyright (c)2000-2004 Ivo Jansch
* @license http://www.achievo.org/atk/licensing ATK Open Source License
*
* @version $Revision$
* $Id$
*/
/**
* @internal Setup the system
*/
$config_atkroot = "./";
include_once($config_atkroot."atk/include/initial.inc");
atksession();
atksecure();
$debugger = &atkinstance("atk.utils.atkdebugger");
$output = &atkOutput::getInstance();
$output->output($debugger->renderConsole());
$config_debug = 0; // force debugging off in console
$output->outputFlush();
?>