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 Yoan Blanc
  7. @copyright   2005-2010 Laurent Jouanneau, 2008 Yoan Blanc
  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.  
  29.         if ($_SERVER['REQUEST_METHOD'== 'PUT'{
  30.             $_PUT $this->readHttpBody();
  31.             if (is_string($_PUT))
  32.                 $this->params['__httpbody'$_PUT;
  33.             else
  34.                 $this->params = array_merge($url->params$_PUT);
  35.         }
  36.         else {
  37.             $this->params = array_merge($url->params$_POST);
  38.         }
  39.     }
  40. }

Documentation generated on Thu, 19 Sep 2013 00:02:34 +0200 by phpDocumentor 1.4.3