|
Server IP : 10.2.73.233 / Your IP : 216.73.216.59 Web Server : Apache/2.4.59 (Debian) System : Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64 User : www-data ( 33) PHP Version : 5.6.40-64+0~20230107.71+debian10~1.gbp673146 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/ifk/web.back/framework/Web/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
/**
* THttpResponseAdatper class
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2014 PradoSoft
* @license http://www.pradosoft.com/license/
* @version $Id$
* @package System.Web
*/
/**
* THttpResponseAdapter class.
*
* THttpResponseAdapter allows the base http response class to change behavior
* without change the class hierarchy.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
* @version $Id$
* @package System.Web
* @since 3.0
*/
class THttpResponseAdapter extends TApplicationComponent
{
/**
* @var THttpResponse the response object the adapter is attached.
*/
private $_response;
/**
* Constructor. Attach a response to be adapted.
* @param THttpResponse the response object the adapter is to attach to.
*/
public function __construct($response)
{
$this->_response=$response;
}
/**
* @return THttpResponse the response object adapted.
*/
public function getResponse()
{
return $this->_response;
}
/**
* This method is invoked when the response flushes the content and headers.
* Default implementation calls the attached response flushContent method.
*/
public function flushContent()
{
$this->_response->flushContent();
}
/**
* This method is invoked when the response is to redirect to another page.
* @param string new url to redirect to.
*/
public function httpRedirect($url)
{
$this->_response->httpRedirect($url);
}
/**
* This method is invoked when a new HtmlWriter needs to be created.
* Default implementation calls the attached response createNewHtmlWriter method.
* @param string type of the HTML writer to be created.
* @param ITextWriter the writer responsible for holding the content.
*/
public function createNewHtmlWriter($type, $writer)
{
return $this->_response->createNewHtmlWriter($type,$writer);
}
}