Exemple #1
0
 protected function doSave($con)
 {
     $affectedRows = 0;
     if (!$this->alreadyInSave) {
         $this->alreadyInSave = true;
         if ($this->aStudent !== null) {
             if ($this->aStudent->isModified()) {
                 $affectedRows += $this->aStudent->save($con);
             }
             $this->setStudent($this->aStudent);
         }
         if ($this->aSubjectAccal !== null) {
             if ($this->aSubjectAccal->isModified()) {
                 $affectedRows += $this->aSubjectAccal->save($con);
             }
             $this->setSubjectAccal($this->aSubjectAccal);
         }
         if ($this->aSubjectCurr !== null) {
             if ($this->aSubjectCurr->isModified()) {
                 $affectedRows += $this->aSubjectCurr->save($con);
             }
             $this->setSubjectCurr($this->aSubjectCurr);
         }
         if ($this->aClassGroup !== null) {
             if ($this->aClassGroup->isModified()) {
                 $affectedRows += $this->aClassGroup->save($con);
             }
             $this->setClassGroup($this->aClassGroup);
         }
         if ($this->aAcademicCalendar !== null) {
             if ($this->aAcademicCalendar->isModified()) {
                 $affectedRows += $this->aAcademicCalendar->save($con);
             }
             $this->setAcademicCalendar($this->aAcademicCalendar);
         }
         if ($this->aGradeComponent !== null) {
             if ($this->aGradeComponent->isModified()) {
                 $affectedRows += $this->aGradeComponent->save($con);
             }
             $this->setGradeComponent($this->aGradeComponent);
         }
         if ($this->aSchedule !== null) {
             if ($this->aSchedule->isModified()) {
                 $affectedRows += $this->aSchedule->save($con);
             }
             $this->setSchedule($this->aSchedule);
         }
         if ($this->aScheduleDetail !== null) {
             if ($this->aScheduleDetail->isModified()) {
                 $affectedRows += $this->aScheduleDetail->save($con);
             }
             $this->setScheduleDetail($this->aScheduleDetail);
         }
         if ($this->isModified()) {
             if ($this->isNew()) {
                 $pk = StudentCoursePeer::doInsert($this, $con);
                 $affectedRows += 1;
                 $this->setId($pk);
                 $this->setNew(false);
             } else {
                 $affectedRows += StudentCoursePeer::doUpdate($this, $con);
             }
             $this->resetModified();
         }
         if ($this->collStudentScores !== null) {
             foreach ($this->collStudentScores as $referrerFK) {
                 if (!$referrerFK->isDeleted()) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         if ($this->collVStudentScores !== null) {
             foreach ($this->collVStudentScores as $referrerFK) {
                 if (!$referrerFK->isDeleted()) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         if ($this->collStudentRaports !== null) {
             foreach ($this->collStudentRaports as $referrerFK) {
                 if (!$referrerFK->isDeleted()) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         if ($this->collVRaports !== null) {
             foreach ($this->collVRaports as $referrerFK) {
                 if (!$referrerFK->isDeleted()) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         if ($this->collVFinalRaports !== null) {
             foreach ($this->collVFinalRaports as $referrerFK) {
                 if (!$referrerFK->isDeleted()) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         if ($this->collVSubjectAccalLectorStudentDetails !== null) {
             foreach ($this->collVSubjectAccalLectorStudentDetails as $referrerFK) {
                 if (!$referrerFK->isDeleted()) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         $this->alreadyInSave = false;
     }
     return $affectedRows;
 }