コード例 #1
0
ファイル: SampleLayout.php プロジェクト: Nurudeen/prado
 public function __construct()
 {
     if (isset($this->Request['notheme'])) {
         $this->Service->RequestedPage->EnableTheming = false;
     }
     parent::__construct();
 }
コード例 #2
0
 /**
  * Constructor.
  * Sets the page object to itself.
  * Derived classes must call parent implementation.
  */
 public function __construct()
 {
     parent::__construct();
     $this->setPage($this);
 }
コード例 #3
0
 public function __construct()
 {
     parent::__construct();
     $this->setAdapter(new TActiveControlAdapter($this));
 }
コード例 #4
0
ファイル: LTemplate.php プロジェクト: Nurudeen/prado
 function __construct()
 {
     parent::__construct();
     $this->setEnableViewState(false);
 }
コード例 #5
0
ファイル: LatestETAPanel.php プロジェクト: larryu/magento-b2b
 public function __construct()
 {
     parent::__construct();
 }
コード例 #6
0
ファイル: LabeledTextbox.php プロジェクト: Nurudeen/prado
 public function __construct()
 {
     parent::__construct();
     $this->ensureChildControls();
 }