Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
12345 anikendra 1
<?php
2
/**
3
 * Test Panel of test_app
4
 *
5
 * PHP 5
6
 *
7
 * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
8
 * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
9
 *
10
 * Licensed under The MIT License
11
 * Redistributions of files must retain the above copyright notice.
12
 *
13
 * @copyright     Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
14
 * @link          http://cakephp.org CakePHP(tm) Project
15
 * @since         DebugKit 0.1
16
 * @license       http://www.opensource.org/licenses/mit-license.php MIT License
17
 */
18
 
19
App::uses('DebugPanel', 'DebugKit.Lib');
20
 
21
/**
22
 * Class TestPanel
23
 *
24
 * @since         DebugKit 0.1
25
 */
26
class TestPanel extends DebugPanel {
27
 
28
/**
29
 * Startup
30
 *
31
 * @param Controller $controller
32
 */
33
	public function startup(Controller $controller) {
34
		$controller->testPanel = true;
35
	}
36
 
37
}