Source for file jResponseJson.class.php
Documentation is available at jResponseJson.class.php
- <?php
- /**
- * @package jelix
- * @subpackage core_response
- * @author Laurent Jouanneau
- * @contributor Loic Mathaud
- * @copyright 2006-2011 Laurent Jouanneau
- * @copyright 2007-2008 Loic Mathaud
- * @link http://www.jelix.org
- * @licence GNU Lesser General Public Licence see LICENCE file or http://www.gnu.org/licenses/lgpl.html
- */
-
- /**
- * Json response
- * @package jelix
- * @subpackage core_response
- * @see jResponse
- * @since 1.0b1
- */
- final class jResponseJson extends jResponse {
-
- /**
- * data in PHP you want to send
- * @var mixed
- */
- public $data = null;
-
-
- public function output(){
-
- if($this->_outputOnlyHeaders){
- $this->sendHttpHeaders();
- return true;
- }
-
- $this->_httpHeaders['Content-Type'] = "application/json";
- $content = json_encode($this->data);
- $this->_httpHeaders['Content-length'] = strlen($content);
- $this->sendHttpHeaders();
- echo $content;
- return true;
- }
-
- public function outputErrors(){
-
- $message = array();
- $message['errorMessage'] = jApp::coord()->getGenericErrorMessage();
- $e = jApp::coord()->getErrorMessage();
- if($e){
- $message['errorCode'] = $e->getCode();
- }else{
- $message['errorCode'] = -1;
- }
- $this->clearHttpHeaders();
- $this->_httpStatusCode ='500';
- $this->_httpStatusMsg ='Internal Server Error';
- $this->_httpHeaders['Content-Type'] = "application/json";
- $content = json_encode($message);
- $this->_httpHeaders['Content-length'] = strlen($content);
- $this->sendHttpHeaders();
- echo $content;
- }
- }
Documentation generated on Wed, 04 Jan 2017 22:56:20 +0100 by phpDocumentor 1.4.3