示例#1
0
 protected function doSave($con)
 {
     $affectedRows = 0;
     if (!$this->alreadyInSave) {
         $this->alreadyInSave = true;
         if ($this->aSubjectCurr !== null) {
             if ($this->aSubjectCurr->isModified()) {
                 $affectedRows += $this->aSubjectCurr->save($con);
             }
             $this->setSubjectCurr($this->aSubjectCurr);
         }
         if ($this->aEmployee !== null) {
             if ($this->aEmployee->isModified()) {
                 $affectedRows += $this->aEmployee->save($con);
             }
             $this->setEmployee($this->aEmployee);
         }
         if ($this->aClassGroup !== null) {
             if ($this->aClassGroup->isModified()) {
                 $affectedRows += $this->aClassGroup->save($con);
             }
             $this->setClassGroup($this->aClassGroup);
         }
         if ($this->aLocation !== null) {
             if ($this->aLocation->isModified()) {
                 $affectedRows += $this->aLocation->save($con);
             }
             $this->setLocation($this->aLocation);
         }
         if ($this->aClassSession !== null) {
             if ($this->aClassSession->isModified()) {
                 $affectedRows += $this->aClassSession->save($con);
             }
             $this->setClassSession($this->aClassSession);
         }
         if ($this->aAcademicCalendar !== null) {
             if ($this->aAcademicCalendar->isModified()) {
                 $affectedRows += $this->aAcademicCalendar->save($con);
             }
             $this->setAcademicCalendar($this->aAcademicCalendar);
         }
         if ($this->aGradeSpec !== null) {
             if ($this->aGradeSpec->isModified()) {
                 $affectedRows += $this->aGradeSpec->save($con);
             }
             $this->setGradeSpec($this->aGradeSpec);
         }
         if ($this->aGradeComponent !== null) {
             if ($this->aGradeComponent->isModified()) {
                 $affectedRows += $this->aGradeComponent->save($con);
             }
             $this->setGradeComponent($this->aGradeComponent);
         }
         if ($this->isModified()) {
             if ($this->isNew()) {
                 $pk = SchedulePeer::doInsert($this, $con);
                 $affectedRows += 1;
                 $this->setId($pk);
                 $this->setNew(false);
             } else {
                 $affectedRows += SchedulePeer::doUpdate($this, $con);
             }
             $this->resetModified();
         }
         if ($this->collScheduleTutors !== null) {
             foreach ($this->collScheduleTutors as $referrerFK) {
                 if (!$referrerFK->isDeleted()) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         if ($this->collScheduleDetails !== null) {
             foreach ($this->collScheduleDetails as $referrerFK) {
                 if (!$referrerFK->isDeleted()) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         if ($this->collClassAgendas !== null) {
             foreach ($this->collClassAgendas as $referrerFK) {
                 if (!$referrerFK->isDeleted()) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         if ($this->collStudentCourses !== null) {
             foreach ($this->collStudentCourses as $referrerFK) {
                 if (!$referrerFK->isDeleted()) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         if ($this->collAbsenceEkskuls !== null) {
             foreach ($this->collAbsenceEkskuls as $referrerFK) {
                 if (!$referrerFK->isDeleted()) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         if ($this->collVAbsenceEkskuls !== null) {
             foreach ($this->collVAbsenceEkskuls as $referrerFK) {
                 if (!$referrerFK->isDeleted()) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         $this->alreadyInSave = false;
     }
     return $affectedRows;
 }