00001 <?php 00010 abstract class response_abstract extends object { 00011 00017 protected $content; 00018 00024 protected $proxy = null; 00025 00031 public function getProxy() { 00032 return factory::get('response_proxy'); 00033 } 00034 00040 public function getContent() { 00041 return $this->content; 00042 } 00043 00049 public function setContent($content) { 00050 $this->content = $content; 00051 } 00052 00059 public function comment($comment) { 00060 return ''; 00061 } 00062 00066 abstract public function send(); 00067 00073 abstract public function sendText($text); 00074 00078 public function __call($func, $prm) {} 00079 00080 public function __toString() { 00081 return ''; 00082 } 00083 00084 }
1.7.1