コード例 #1
0
ファイル: PagdivsOp.php プロジェクト: Cryde/sydney-core
 public function __construct($id = 0)
 {
     parent::__construct();
     if (is_numeric($id) && $id > 0) {
         $rowset = $this->find($id);
         $this->row = $rowset[0];
         if (method_exists($this, 'loadParent')) {
             $this->loadParent();
         }
     }
 }
コード例 #2
0
ファイル: PagstructureOp.php プロジェクト: Cryde/sydney-core
 /**
  *
  * Enter description here ...
  */
 public function __construct($id = 0)
 {
     parent::__construct();
     if (is_numeric($id) && $id > 0) {
         $this->load($id);
     }
 }
コード例 #3
0
ファイル: PagstatsOp.php プロジェクト: Cryde/sydney-core
 public function init()
 {
     parent::init();
 }