Source for file jResponseText.class.php
Documentation is available at jResponseText.class.php
- <?php
- /**
- * @package jelix
- * @subpackage core_response
- * @author Laurent Jouanneau
- * @contributor
- * @copyright 2005-2008 Laurent Jouanneau
- * @link http://www.jelix.org
- * @licence GNU Lesser General Public Licence see LICENCE file or http://www.gnu.org/licenses/lgpl.html
- */
-
- /**
- * plain Text response
- * @package jelix
- * @subpackage core_response
- */
- class jResponseText extends jResponse {
- /**
- * @var string
- */
- protected $_type = 'text';
-
- /**
- * text content
- * @var string
- */
- public $content = '';
-
- /**
- * output the content with the text/plain mime type
- * @return boolean true si it's ok
- */
- public function output(){
- global $gJConfig;
- if($this->hasErrors()) return false;
- $this->addHttpHeader('Content-Type','text/plain;charset='.$gJConfig->charset,false);
- $this->_httpHeaders['Content-length']=strlen($this->content);
- $this->sendHttpHeaders();
- echo $this->content;
- return true;
- }
-
- /**
- * output errors
- */
- public function outputErrors(){
- global $gJConfig;
- header("HTTP/1.0 500 Internal Server Error");
- header('Content-Type: text/plain;charset='.$gJConfig->charset);
- if($this->hasErrors()){
- foreach( $GLOBALS['gJCoord']->errorMessages as $e){
- echo '['.$e[0].' '.$e[1].'] '.$e[2]." \t".$e[3]." \t".$e[4]."\n";
- }
- }else{
- echo "[unknown error]\n";
- }
- }
- }
Documentation generated on Thu, 22 Mar 2012 22:16:53 +0100 by phpDocumentor 1.4.3