Source for file jResponseJson.class.php

Documentation is available at jResponseJson.class.php

  1. <?php
  2. /**
  3. @package     jelix
  4. @subpackage  core_response
  5. @author      Laurent Jouanneau
  6. @contributor Loic Mathaud
  7. @copyright   2006-2011 Laurent Jouanneau
  8. @copyright   2007-2008 Loic Mathaud
  9. @link        http://www.jelix.org
  10. @licence     GNU Lesser General Public Licence see LICENCE file or http://www.gnu.org/licenses/lgpl.html
  11. */
  12.  
  13. /**
  14. * Json response
  15. @package  jelix
  16. @subpackage core_response
  17. @see jResponse
  18. @since 1.0b1
  19. */
  20. final class jResponseJson extends jResponse {
  21.  
  22.     /**
  23.      * data in PHP you want to send
  24.      * @var mixed 
  25.      */
  26.     public $data = null;
  27.  
  28.  
  29.     public function output(){
  30.         global $gJCoord;
  31.         $this->_httpHeaders['Content-Type'"application/json";
  32.         $content json_encode($this->data);
  33.         $this->_httpHeaders['Content-length'strlen($content);
  34.         $this->sendHttpHeaders();
  35.         echo $content;
  36.         return true;
  37.     }
  38.  
  39.     public function outputErrors(){
  40.         global $gJCoord;
  41.         $message array();
  42.         $message['errorMessage'$gJCoord->getGenericErrorMessage();
  43.         $e $gJCoord->getErrorMessage();
  44.         if($e){
  45.             $message['errorCode'$e->getCode();
  46.         }else{
  47.             $message['errorCode'= -1;
  48.         }
  49.         $this->clearHttpHeaders();
  50.         $this->_httpStatusCode ='500';
  51.         $this->_httpStatusMsg ='Internal Server Error';
  52.         $this->_httpHeaders['Content-Type'"application/json";
  53.         $content json_encode($message);
  54.         $this->_httpHeaders['Content-length'strlen($content);
  55.         $this->sendHttpHeaders();
  56.         echo $content;
  57.     }
  58. }

Documentation generated on Wed, 24 Sep 2014 22:01:30 +0200 by phpDocumentor 1.4.3