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

Constructor.
public __construct ( $control )
Пример #1
0
 /**
  * Constructor, trap errors and exception to let the callback response
  * handle them.
  */
 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();
 }
Пример #2
0
 /**
  * Constructor.
  * @param IActiveControl active control to adapt.
  * @param string Base active control class name.
  */
 public function __construct(IActiveControl $control, $baseCallbackClass = null)
 {
     parent::__construct($control);
     $this->setBaseControlClass($baseCallbackClass);
 }