0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
lib
/
debug
/
[
Home
]
File: debug-command_test.php
<?php // (c) Copyright 2002-2015 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: debug-command_test.php 53803 2015-02-06 00:42:50Z jyhem $ /** * \brief Skeleton to quick startup of making new debugger command * \author zaufi <zaufi@sendmail.ru> */ require_once ('lib/debug/debugger-ext.php'); /** * \brief Just a test * * This skeleton can be used to quick make and test smth :) * It contain minimum to be a debugger command -- it is not * example of full functional command... * * Usual way to use this file: * 1. change smth * 2. play with result * 3. if results can be used by others goto 4 else goto 5 * 4. rename file, add needed helpers(), cvs add, cvs ci, cvs up, goto 6 * 5. rm file, cvs up * 6. if (have_another_idea() == true) goto 1 * */ class DebuggerCommand_Test extends DebuggerCommand { /// \b Must have function to announce command name in debugger console function name() { return 'test'; } /// Execute command with given set of arguments. Must return string of result. function execute($params) { // NOTE: Don't forget to set result type! By default it is NO_RESULT. $this->set_result_type(TEXT_RESULT); return 'done'; } } function dbg_command_factory_test() { return new DebuggerCommand_Test(); }