Exemplo n.º 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);
 }
Exemplo n.º 2
0
 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;
 }
Exemplo n.º 3
0
Arquivo: ORM.php Projeto: stecj/sime
 public function __construct($id = NULL)
 {
     parent::__construct($id);
 }