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

Source for file Application.php

Documentation is available at Application.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.  
  34. require_once 'ForwardFW/Filter/RequestResponse.php';
  35.  
  36. /**
  37.  * This class loads and runs the requested Application.
  38.  *
  39.  * @category   Filter
  40.  * @package    ForwardFW
  41.  * @subpackage RequestResponse
  42.  * @author     Alexander Opitz <opitz.alexander@primacom.net>
  43.  * @license    http://www.gnu.org/copyleft/gpl.html GNU General Public License
  44.  * @link       http://forwardfw.sourceforge.net
  45.  */
  46. {
  47.     /**
  48.      * Function to process before your child
  49.      *
  50.      * @return void 
  51.      */
  52.     public function doIncomingFilter()
  53.     {
  54.         $this->response->addLog('Start Application');
  55.         if (isset($GLOBALS['ForwardFW_Application'])) {
  56.             $strApplicationClass $GLOBALS['ForwardFW_Application']['class'];
  57.             $strApplicationName  $GLOBALS['ForwardFW_Application']['name'];
  58.             include_once str_replace('_''/'$strApplicationClass'.php';
  59.             $application new $strApplicationClass(
  60.                 $strApplicationName,
  61.                 $this->request,
  62.                 $this->response
  63.             );
  64.             $application->run();
  65.         else {
  66.             $this->response->addError('No Application');
  67.         }
  68.     }
  69.  
  70.     /**
  71.      * Function to process after your child
  72.      *
  73.      * @return void 
  74.      */
  75.     public function doOutgoingFilter()
  76.     {
  77.         $this->response->addLog('End Application');
  78.     }
  79. }

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