Prado\Web\UI\ActiveControls\TActivePageAdapter::__construct PHP Метод

__construct() публичный Метод

Constructor, trap errors and exception to let the callback response handle them.
public __construct ( TPage $control )
$control Prado\Web\UI\TPage
    public function __construct(TPage $control)
    {
        parent::__construct($control);
        //TODO: can this be done later?
        $response = $this->getApplication()->getResponse();
        $response->setAdapter(new TCallbackResponseAdapter($response));
        $this->trapCallbackErrorsExceptions();
    }