ForwardFW
[ class tree: ForwardFW ] [ index: ForwardFW ] [ all elements ]

Source for file FirePHP.php

Documentation is available at FirePHP.php

  1. <?php
  2. declare(encoding "utf-8");
  3. /**
  4.  * This file is part of ForwardFW a web application framework.
  5.  *
  6.  * This library is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU General Public
  8.  * License as published by the Free Software Foundation; either
  9.  * version 2.1 of the License, or (at your option) any later version.
  10.  *
  11.  * This library is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  * General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public
  17.  * License along with this library; if not, write to the Free Software
  18.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  19.  *
  20.  * PHP version 5
  21.  *
  22.  * @category   Filter
  23.  * @package    ForwardFW
  24.  * @subpackage RequestResponse
  25.  * @author     Alexander Opitz <opitz.alexander@primacom.net>
  26.  * @copyright  2009-2010 The Authors
  27.  * @license    http://www.gnu.org/copyleft/gpl.html GNU General Public License
  28.  * @version    SVN: $Id: $
  29.  * @link       http://forwardfw.sourceforge.net
  30.  * @since      File available since Release 0.0.1
  31.  */
  32.  
  33. require_once 'ForwardFW/Filter/RequestResponse.php';
  34.  
  35. require_once 'FirePHPCore/FirePHP.class.php';
  36.  
  37. /**
  38.  * This class sends the log and error message queue to the client via FirePHP.
  39.  *
  40.  * @category   Filter
  41.  * @package    ForwardFW
  42.  * @subpackage RequestResponse
  43.  * @author     Alexander Opitz <opitz.alexander@primacom.net>
  44.  * @license    http://www.gnu.org/copyleft/gpl.html GNU General Public License
  45.  * @link       http://forwardfw.sourceforge.net
  46.  */
  47. {
  48.     /**
  49.      * Function to process before your child
  50.      *
  51.      * @return void 
  52.      */
  53.     public function doIncomingFilter()
  54.     {
  55.         $this->response->addLog('Enter Filter');
  56.     }
  57.  
  58.     /**
  59.      * Function to process after your child
  60.      *
  61.      * @return void 
  62.      */
  63.     public function doOutgoingFilter()
  64.     {
  65.         $this->response->addLog('Leave Filter');
  66.         $this->firephp FirePHP::getInstance(true);
  67.  
  68.         $this->outputLog();
  69.         $this->outputError();
  70.     }
  71.  
  72.     /**
  73.      * Adds the response log entries to the log group in FirePHP
  74.      *
  75.      * @return void 
  76.      */
  77.     private function outputLog()
  78.     {
  79.         $this->firephp->group('Response::Log');
  80.         $arLogs $this->response->getLogs()->getEntries();
  81.         foreach ($arLogs as $strMessage{
  82.             $this->firephp->log($strMessage);
  83.         }
  84.         $this->firephp->groupEnd();
  85.     }
  86.  
  87.  
  88.     /**
  89.      * Adds the response error entries to the error group in FirePHP
  90.      *
  91.      * @return void 
  92.      */
  93.     function outputError()
  94.     {
  95.         $this->firephp->group('Response::Error');
  96.         $arErrors $this->response->getErrors()->getEntries();
  97.         foreach ($arErrors as $strMessage{
  98.             $this->firephp->error($strMessage);
  99.         }
  100.         $this->firephp->groupEnd();
  101.     }
  102. }

Documentation generated on Sun, 30 Jan 2011 20:46:41 +0100 by phpDocumentor 1.4.3