コード例 #1
0
 public function __construct($id = NULL)
 {
     Kohana::$profiling === TRUE && ($bm = Profiler::start('ORM', __FUNCTION__));
     parent::__construct($id);
     $this->after_initialize();
     isset($bm) && Profiler::stop($bm);
 }
コード例 #2
0
ファイル: orm.php プロジェクト: jimktrains/rccms
 public function __construct($id = NULL)
 {
     parent::__construct($id);
     $this->_version_table_name = $this->_table_name . $this->_version_table_suffix;
     $this->_version_of = $this->_object_name . '_' . $this->_primary_key;
     $this->_ignored_columns[] = $this->_version_coloumn_reason;
     $this->_ignored_columns[] = $this->_version_of;
     $this->_real_table = $this->_table_name;
 }
コード例 #3
0
ファイル: ORM.php プロジェクト: stecj/sime
 public function __construct($id = NULL)
 {
     parent::__construct($id);
 }