Source for file jClassicRequest.class.php
Documentation is available at jClassicRequest.class.php
- <?php
- /**
- * @package jelix
- * @subpackage core_request
- * @author Laurent Jouanneau
- * @contributor
- * @copyright 2005-2006 Laurent Jouanneau
- * @link http://www.jelix.org
- * @licence GNU Lesser General Public Licence see LICENCE file or http://www.gnu.org/licenses/lgpl.html
- */
-
- /**
- * handle "classical" request
- * it just gets parameters from the url query and the post content. And responses can
- * be in many format : text, html, xml...
- * @package jelix
- * @subpackage core_request
- */
- class jClassicRequest extends jRequest {
-
- public $type = 'classic';
-
- public $defaultResponseType = 'html';
-
- protected function _initParams(){
-
- $url = jUrl::parseFromRequest($this, $_GET);
- $this->params = array_merge($url->params, $_POST);
- }
-
- }
Documentation generated on Thu, 22 Mar 2012 22:14:08 +0100 by phpDocumentor 1.4.3