Exemple #1
0
 protected function doSave($con)
 {
     $affectedRows = 0;
     if (!$this->alreadyInSave) {
         $this->alreadyInSave = true;
         if ($this->aCourseSchedule !== null) {
             if ($this->aCourseSchedule->isModified()) {
                 $affectedRows += $this->aCourseSchedule->save($con);
             }
             $this->setCourseSchedule($this->aCourseSchedule);
         }
         if ($this->aStudent !== null) {
             if ($this->aStudent->isModified()) {
                 $affectedRows += $this->aStudent->save($con);
             }
             $this->setStudent($this->aStudent);
         }
         if ($this->aCounselingStatus !== null) {
             if ($this->aCounselingStatus->isModified()) {
                 $affectedRows += $this->aCounselingStatus->save($con);
             }
             $this->setCounselingStatus($this->aCounselingStatus);
         }
         if ($this->aClassGroup !== null) {
             if ($this->aClassGroup->isModified()) {
                 $affectedRows += $this->aClassGroup->save($con);
             }
             $this->setClassGroup($this->aClassGroup);
         }
         if ($this->aEmployee !== null) {
             if ($this->aEmployee->isModified()) {
                 $affectedRows += $this->aEmployee->save($con);
             }
             $this->setEmployee($this->aEmployee);
         }
         if ($this->isModified()) {
             if ($this->isNew()) {
                 $pk = ClassCounselPeer::doInsert($this, $con);
                 $affectedRows += 1;
                 $this->setId($pk);
                 $this->setNew(false);
             } else {
                 $affectedRows += ClassCounselPeer::doUpdate($this, $con);
             }
             $this->resetModified();
         }
         $this->alreadyInSave = false;
     }
     return $affectedRows;
 }