Source for file jClassicRequest.class.php

Documentation is available at jClassicRequest.class.php

  1. <?php
  2. /**
  3. @package     jelix
  4. @subpackage  core_request
  5. @author      Laurent Jouanneau
  6. @contributor
  7. @copyright   2005-2006 Laurent Jouanneau
  8. @link        http://www.jelix.org
  9. @licence     GNU Lesser General Public Licence see LICENCE file or http://www.gnu.org/licenses/lgpl.html
  10. */
  11.  
  12. /**
  13.  * handle "classical" request
  14.  * it just gets parameters from the url query and the post content. And responses can
  15.  * be in many format : text, html, xml...
  16.  * @package     jelix
  17.  * @subpackage  core_request
  18.  */
  19. class jClassicRequest extends jRequest {
  20.  
  21.     public $type = 'classic';
  22.  
  23.     public $defaultResponseType = 'html';
  24.  
  25.     protected function _initParams(){
  26.  
  27.         $url  jUrl::parseFromRequest($this$_GET);
  28.         $this->params = array_merge($url->params$_POST);
  29.     }
  30.  
  31. }

Documentation generated on Thu, 22 Mar 2012 22:14:08 +0100 by phpDocumentor 1.4.3