0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
3.2.0-5
/
standard
/
htdocs
/
lib
/
debug
/
[
Home
]
File: debugger-common.php
<?php /** \file * $Id: /cvsroot/tikiwiki/tiki/lib/debug/debugger-common.php,v 1.3 2003-08-07 04:34:03 rossta Exp $ * * \brief Commonly used stuff * * \author zaufi <zaufi@sendmail.ru> * */ /// Result not available define('NO_RESULT', 0); /// Command returns text/plain. execute() must return string type. define('TEXT_RESULT', 1); /// Command returns text/html. execute() must return string type. define('HTML_RESULT', 2); /// Command need tpl file to display result. execute() may return any type. define('TPL_RESULT', 3); /** * \brief Every command and debugger itself have a result type. */ class ResultType { /// Type of result (see consts defined above) var $result_type; /// Template name if $result_type == TPL_RESULT var $result_tpl; /// Constructor init all function ResultType() { $this->reset(); } /// Init all vars to default state function reset() { $this->result_tpl = ''; $this->result_type = NO_RESULT; } /// Accessor for result_type function result_type() { return $this->result_type; } function set_result_type($type) { $this->result_tpl = ''; $this->result_type = ($type == TEXT_RESULT || $type == HTML_RESULT || $type == TPL_RESULT) ? $type : NO_RESULT; } /// Accessor for result_tpl function result_tpl() { return $this->result_tpl; } function set_result_tpl($tpl) { $this->result_tpl = $tpl; } } ?>