TYPO3 API  SVNRelease
class.t3lib_extjs_extdirectdebug.php
Go to the documentation of this file.
00001 <?php
00002 /***************************************************************
00003  *  Copyright notice
00004  *
00005  *  (c) 2010-2011 Stefan Galinski <stefan.galinski@gmail.com>
00006  *  All rights reserved
00007  *
00008  *  This script is part of the TYPO3 project. The TYPO3 project is
00009  *  free software; you can redistribute it and/or modify
00010  *  it under the terms of the GNU General Public License as published by
00011  *  the Free Software Foundation; either version 2 of the License, or
00012  *  (at your option) any later version.
00013  *
00014  *  The GNU General Public License can be found at
00015  *  http://www.gnu.org/copyleft/gpl.html.
00016  *  A copy is found in the textfile GPL.txt and important notices to the license
00017  *  from the author is found in LICENSE.txt distributed with these scripts.
00018  *
00019  *
00020  *  This script is distributed in the hope that it will be useful,
00021  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
00022  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00023  *  GNU General Public License for more details.
00024  *
00025  *  This copyright notice MUST APPEAR in all copies of the script!
00026  ***************************************************************/
00027 
00028 /**
00029  * Ext Direct Debug
00030  *
00031  * @author  Stefan Galinski <stefan.galinski@gmail.com>
00032  * @package TYPO3
00033  */
00034 class t3lib_extjs_ExtDirectDebug {
00035     /**
00036      * Internal debug message array
00037      *
00038      * @var array
00039      */
00040     protected $debugMessages = array();
00041 
00042     /**
00043      * Adds a new message of any data type to the internal debug message array.
00044      *
00045      * @param mixed $message
00046      * @return void
00047      */
00048     public function debug($message) {
00049         $this->debugMessages[] = $message;
00050     }
00051 
00052     /**
00053      * Returns the internal debug messages as a string.
00054      *
00055      * @return string
00056      */
00057     public function toString() {
00058         $messagesAsString = '';
00059         if (count($this->debugMessages)) {
00060             $messagesAsString = t3lib_utility_Debug::viewArray($this->debugMessages);
00061         }
00062 
00063         return $messagesAsString;
00064     }
00065 }
00066 
00067 if (defined('TYPO3_MODE') && isset($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['t3lib/extjs/class.t3lib_extjs_extdirectdebug.php'])) {
00068     include_once($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['t3lib/extjs/class.t3lib_extjs_extdirectdebug.php']);
00069 }
00070 
00071 ?>