예제 #1
0
파일: Relation.php 프로젝트: atk4/atk4
 public function beforeInsert($m, $q)
 {
     // Insert related table data and add ID into the main query
     // TODO: handle cases when $this->m1 != $this->owner->table?:$this->owner->table_alias
     if ($this->delete_behaviour == 'ignore') {
         return;
     }
     if ($this->owner->hasElement($this->m2) && $this->owner->get($this->m2) !== null) {
         return;
         // using existing element
     }
     $this->dsql->set($this->f2, null);
     $this->id = $this->dsql->insert();
     if ($this->relation) {
         $q = $this->relation->dsql;
     }
     $q->set($this->m2, $this->id);
 }