Example #1
0
 public static function nextId()
 {
     if (DbIDGenerator::$idgenerator == null) {
         DbIDGenerator::$idgenerator = new DbIDGenerator();
     }
     return DbIDGenerator::$idgenerator->getNextID();
 }
Example #2
0
    public function afterConstruct($event) { 

        Yii::import('system.vendors.lifei.DbIDGenerator');

        if($this->owner->isNewRecord && $this->owner->getPrimaryKey() == NULL) {
            $this->owner->setPrimaryKey(DbIDGenerator::nextId());
        }
    } 
Example #3
0
 protected function afterConstruct()
 {
     parent::afterConstruct();
     if ($this->isNewRecord && $this->getPrimaryKey() == NULL) {
         $this->setPrimaryKey(DbIDGenerator::nextId());
     }
 }