home *** CD-ROM | disk | FTP | other *** search
- <?php
- /**
- * AJAX Debugging implementation
- *
- * SVN Rev: $Id$
- */
-
- /**
- * Newline to use
- */
- define ("HTML_AJAX_NEWLINE", "\n");
-
- // {{{ class HTML_AJAX_Debug
- /**
- * AJAX Debugging implementation
- *
- * @category HTML
- * @package AJAX
- * @author David Coallier <davidc@php.net>
- * @copyright 2005 David Coallier
- * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
- * @version Release: 0.5.6
- */
- class HTML_AJAX_Debug {
- // {{{ properties
- /**
- * This is the error message.
- *
- * @access private
- */
- var $errorMsg;
-
- /**
- * The line where the error occured.
- *
- * @access private
- */
- var $errorLine;
-
- /**
- * The error code.
- *
- * @access private
- */
- var $errorCode;
-
- /**
- * The file where the error occured.
- *
- * @access private
- */
- var $errorFile;
-
- /**
- * Time the error occured
- *
- * @access private
- */
- var $_timeOccured;
-
- /**
- * The whole error itself
- *
- * @access private
- * @see errorMsg
- * @see errorLine
- * @see errorFile
- * @see errorCode
- */
- var $error;
-
- /**
- * The file to save the error to.
- *
- * @access private
- * @default ajaxErrLog.xml
- */
- var $file = 'ajaxErrLog.xml';
- // }}}
- // {{{ constructor
- /**
- * The constructor.
- *
- * @param string $errorMsg The error message.
- * @param string $errLine The line where error occured.
- * @param string $errCode The error Code.
- * @param string $errFile The file where error occured.
- */
- function HTML_AJAX_Debug($errMsg, $errLine, $errCode, $errFile)
- {
- $this->errorMsg = $errMsg;
- $this->errorLine = $errLine;
- $this->errorCode = $errCode;
- $this->errorFile = $errFile;
- $this->_timeOccured = date("Y-m-d H:i:s", time());
- $this->xmlError();
- }
- // }}}
- // {{{ xmlError
- /**
- * This functions formats the error to xml format then we can save it.
- *
- * @access protected
- * @return $this->error the main error.
- */
- function xmlError()
- {
- $error = " <when>{$this->_timeOccured}</when>" . HTML_AJAX_NEWLINE;
- $error .= " <msg>{$this->errorMsg}</msg>" . HTML_AJAX_NEWLINE;
- $error .= " <code>{$this->errorCode}</code>" . HTML_AJAX_NEWLINE;
- $error .= " <line>{$this->errorLine}</line>" . HTML_AJAX_NEWLINE;
- $error .= " <file>{$this->errorFile}</file>" . HTML_AJAX_NEWLINE . HTML_AJAX_NEWLINE;
- return $this->error = $error;
- }
- // }}}
- // {{{ sessionError
- /**
- * This function pushes the array $_SESSION['html_ajax_debug']['time'][]
- * with the values inside of $this->error
- *
- * @access public
- */
- function sessionError()
- {
- $_SESSION['html_ajax_debug']['time'][] = $this->error;
- }
- // }}}
- // {{{ _saveError
- /**
- * This function saves the error to a file
- * appending to this file.
- *
- * @access private.
- */
- function _saveError()
- {
- if ($handle = fopen($this->file, 'a')) {
- fwrite($handle, $this->error);
- }
- }
- // }}}
- }
- // }}}
- ?>
-