コード例 #1
0
ファイル: Abstract.php プロジェクト: netconstructor/Centurion
 public function __construct($model)
 {
     parent::__construct($model);
     $this->_model = $model;
     $this->_modelInfo = $this->_model->info();
     $this->checkForRequiredColumn();
 }
コード例 #2
0
ファイル: Abstract.php プロジェクト: rom1git/Centurion
 public function __construct($select)
 {
     parent::__construct($select);
     $this->_select = $select;
 }
コード例 #3
0
ファイル: Abstract.php プロジェクト: netconstructor/Centurion
 public function __construct($controller)
 {
     parent::__construct($controller);
     $this->_controller = $controller;
 }
コード例 #4
0
ファイル: Abstract.php プロジェクト: netconstructor/Centurion
 public function __construct($form)
 {
     parent::__construct($form);
     $this->_form = $form;
 }
コード例 #5
0
ファイル: Abstract.php プロジェクト: netconstructor/Centurion
 public function __construct($row)
 {
     parent::__construct($row);
     $this->_row = $row;
 }