Example #1
0
 /**
  * Performs the work of inserting or updating the row in the database.
  *
  * If the object is new, it inserts it; otherwise an update is performed.
  * All related objects are also updated in this method.
  *
  * @param      ConnectionInterface $con
  * @return int             The number of rows affected by this insert/update and any referring fk objects' save() operations.
  * @throws PropelException
  * @see save()
  */
 protected function doSave(ConnectionInterface $con)
 {
     $affectedRows = 0;
     // initialize var to track total num of affected rows
     if (!$this->alreadyInSave) {
         $this->alreadyInSave = true;
         // We call the save method on the following object(s) if they
         // were passed to this object by their corresponding set
         // method.  This object relates to these object(s) by a
         // foreign key reference.
         if ($this->aStartgroup !== null) {
             if ($this->aStartgroup->isModified() || $this->aStartgroup->isNew()) {
                 $affectedRows += $this->aStartgroup->save($con);
             }
             $this->setStartgroup($this->aStartgroup);
         }
         if ($this->aPerformanceTotalStatistic !== null) {
             if ($this->aPerformanceTotalStatistic->isModified() || $this->aPerformanceTotalStatistic->isNew()) {
                 $affectedRows += $this->aPerformanceTotalStatistic->save($con);
             }
             $this->setPerformanceTotalStatistic($this->aPerformanceTotalStatistic);
         }
         if ($this->aPerformanceExecutionStatistic !== null) {
             if ($this->aPerformanceExecutionStatistic->isModified() || $this->aPerformanceExecutionStatistic->isNew()) {
                 $affectedRows += $this->aPerformanceExecutionStatistic->save($con);
             }
             $this->setPerformanceExecutionStatistic($this->aPerformanceExecutionStatistic);
         }
         if ($this->aPerformanceChoreographyStatistic !== null) {
             if ($this->aPerformanceChoreographyStatistic->isModified() || $this->aPerformanceChoreographyStatistic->isNew()) {
                 $affectedRows += $this->aPerformanceChoreographyStatistic->save($con);
             }
             $this->setPerformanceChoreographyStatistic($this->aPerformanceChoreographyStatistic);
         }
         if ($this->aPerformanceMusicAndTimingStatistic !== null) {
             if ($this->aPerformanceMusicAndTimingStatistic->isModified() || $this->aPerformanceMusicAndTimingStatistic->isNew()) {
                 $affectedRows += $this->aPerformanceMusicAndTimingStatistic->save($con);
             }
             $this->setPerformanceMusicAndTimingStatistic($this->aPerformanceMusicAndTimingStatistic);
         }
         if ($this->isNew() || $this->isModified()) {
             // persist changes
             if ($this->isNew()) {
                 $this->doInsert($con);
                 $affectedRows += 1;
             } else {
                 $affectedRows += $this->doUpdate($con);
             }
             $this->resetModified();
         }
         if ($this->scoresScheduledForDeletion !== null) {
             if (!$this->scoresScheduledForDeletion->isEmpty()) {
                 \iuf\junia\model\ScoreQuery::create()->filterByPrimaryKeys($this->scoresScheduledForDeletion->getPrimaryKeys(false))->delete($con);
                 $this->scoresScheduledForDeletion = null;
             }
         }
         if ($this->collScores !== null) {
             foreach ($this->collScores as $referrerFK) {
                 if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         if ($this->performanceScoresScheduledForDeletion !== null) {
             if (!$this->performanceScoresScheduledForDeletion->isEmpty()) {
                 \iuf\junia\model\PerformanceScoreQuery::create()->filterByPrimaryKeys($this->performanceScoresScheduledForDeletion->getPrimaryKeys(false))->delete($con);
                 $this->performanceScoresScheduledForDeletion = null;
             }
         }
         if ($this->collPerformanceScores !== null) {
             foreach ($this->collPerformanceScores as $referrerFK) {
                 if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         $this->alreadyInSave = false;
     }
     return $affectedRows;
 }