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->aAcademicCalendar !== null) { if ($this->aAcademicCalendar->isModified()) { $affectedRows += $this->aAcademicCalendar->save($con); } $this->setAcademicCalendar($this->aAcademicCalendar); } if ($this->aClassGroup !== null) { if ($this->aClassGroup->isModified()) { $affectedRows += $this->aClassGroup->save($con); } $this->setClassGroup($this->aClassGroup); } 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->aGradeComponent !== null) { if ($this->aGradeComponent->isModified()) { $affectedRows += $this->aGradeComponent->save($con); } $this->setGradeComponent($this->aGradeComponent); } if ($this->aEmployee !== null) { if ($this->aEmployee->isModified()) { $affectedRows += $this->aEmployee->save($con); } $this->setEmployee($this->aEmployee); } if ($this->isModified()) { if ($this->isNew()) { $pk = AbsenceEkskulPeer::doInsert($this, $con); $affectedRows += 1; $this->setId($pk); $this->setNew(false); } else { $affectedRows += AbsenceEkskulPeer::doUpdate($this, $con); } $this->resetModified(); } $this->alreadyInSave = false; } return $affectedRows; }