Source for file jResponseText.class.php

Documentation is available at jResponseText.class.php

  1. <?php
  2. /**
  3. @package     jelix
  4. @subpackage  core_response
  5. @author      Laurent Jouanneau
  6. @copyright   2005-2009 Laurent Jouanneau
  7. @link        http://www.jelix.org
  8. @licence     GNU Lesser General Public Licence see LICENCE file or http://www.gnu.org/licenses/lgpl.html
  9. */
  10.  
  11. /**
  12. * plain Text response
  13. @package  jelix
  14. @subpackage core_response
  15. */
  16. class jResponseText extends jResponse {
  17.     /**
  18.     * @var string 
  19.     */
  20.     protected $_type = 'text';
  21.  
  22.     /**
  23.      * text content
  24.      * @var string 
  25.      */
  26.     public $content = '';
  27.  
  28.     /**
  29.      * output the content with the text/plain mime type
  30.      * @return boolean    true si it's ok
  31.      */
  32.     public function output(){
  33.         global $gJConfig;
  34.         if($this->hasErrors()) return false;
  35.         $this->addHttpHeader('Content-Type','text/plain;charset='.$gJConfig->charset,false);
  36.         $this->_httpHeaders['Content-length']=strlen($this->content);
  37.         $this->sendHttpHeaders();
  38.         echo $this->content;
  39.         return true;
  40.     }
  41.  
  42.     /**
  43.      * output errors
  44.      */
  45.     public function outputErrors(){
  46.         global $gJConfig;
  47.         header("HTTP/1.0 500 Internal Server Error");
  48.         header('Content-Type: text/plain;charset='.$gJConfig->charset);
  49.         if($this->hasErrors()){
  50.             foreach$GLOBALS['gJCoord']->errorMessages  as $e){
  51.                echo '['.$e[0].' '.$e[1].'] '.$e[2]." \t".$e[3]." \t".$e[4]."\n";
  52.                if ($e[5])
  53.                   echo $e[5]."\n\n";
  54.             }
  55.         }else{
  56.             echo "[unknown error]\n";
  57.         }
  58.     }
  59. }

Documentation generated on Thu, 19 Sep 2013 00:06:59 +0200 by phpDocumentor 1.4.3