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

Source for file Request.php

Documentation is available at Request.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   Request
  23.  * @package    ForwardFW
  24.  * @subpackage Main
  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.  * This class represents the Request from browser.
  35.  *
  36.  * @category   Request
  37.  * @package    ForwardFW
  38.  * @subpackage Main
  39.  * @author     Alexander Opitz <opitz.alexander@primacom.net>
  40.  * @license    http://www.gnu.org/copyleft/gpl.html GNU General Public License
  41.  * @link       http://forwardfw.sourceforge.net
  42.  */
  43. {
  44.     /**
  45.      * Returns the parameter for the application from browser request or
  46.      * the session data.
  47.      *
  48.      * @param string $strParameterName   Name of the parameter to return.
  49.      * @param string $strControllerClass Class name of the controller, wh asks.
  50.      * @param string $strApplicationName Name of the application.
  51.      *
  52.      * @return mixed The parameter for the application or null.
  53.      */
  54.     public function getParameter(
  55.         $strParameterName,
  56.         $strControllerClass 'ForwardFW_Request',
  57.         $strApplicationName ''
  58.     {
  59.         $return $this->getRequestParameter(
  60.             $strParameterName$strApplicationName
  61.         );
  62.         if (is_null($return)) {
  63.             $return $this->getConfigParameter(
  64.                 $strParameterName$strControllerClass$strApplicationName
  65.             );
  66.         }
  67.         return $return;
  68.     }
  69.  
  70.     /**
  71.      * Returns the request parameter from browser/user session.
  72.      *
  73.      * @param string $strParameterName   Name of the parameter to return.
  74.      * @param string $strApplicationName Name of the application.
  75.      *
  76.      * @return mixed The parameter from the request.
  77.      */
  78.     public function getRequestParameter(
  79.         $strParameterName,
  80.         $strApplicationName ''
  81.     {
  82.         $return null;
  83.         if (isset($_REQUEST[$strApplicationName][$strParameterName])) {
  84.             $return $_REQUEST[$strApplicationName][$strParameterName];
  85.         }
  86.         return $return;
  87.     }
  88.  
  89.     /**
  90.      * Returns the config parameter for the application from configuration.
  91.      *
  92.      * @param string $strParameterName   Name of the parameter to return.
  93.      * @param string $strControllerClass Class name of the controller, wh asks.
  94.      * @param string $strApplicationName Name of the application.
  95.      *
  96.      * @return mixed The configuration for the application or null.
  97.      */
  98.     public function getConfigParameter(
  99.         $strParameterName,
  100.         $strControllerClass 'ForwardFW_Request',
  101.         $strApplicationName ''
  102.     {
  103.         $return null;
  104.         if (isset($GLOBALS[$strParameterName])) {
  105.             $return $GLOBALS[$strParameterName];
  106.         }
  107.         if (isset($GLOBALS['ForwardFW'][$strParameterName])) {
  108.             $return $GLOBALS['ForwardFW'][$strParameterName];
  109.         }
  110.         if (isset($GLOBALS[$strApplicationName][$strParameterName])) {
  111.             $return $GLOBALS[$strApplicationName][$strParameterName];
  112.         }
  113.         if (isset($GLOBALS[$strControllerClass][$strParameterName])) {
  114.             $return $GLOBALS[$strControllerClass][$strParameterName];
  115.         }
  116.         if (
  117.             isset(
  118.                 $GLOBALS[$strApplicationName][$strControllerClass][$strParameterName]
  119.             )
  120.         {
  121.             $return $GLOBALS[$strApplicationName][$strControllerClass][$strParameterName];
  122.         }
  123.         return $return;
  124.     }
  125. }
  126. ?>

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