Exemple #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->aModule !== null) {
             if ($this->aModule->isModified() || $this->aModule->isNew()) {
                 $affectedRows += $this->aModule->save($con);
             }
             $this->setModule($this->aModule);
         }
         if ($this->isNew() || $this->isModified()) {
             // persist changes
             if ($this->isNew()) {
                 $this->doInsert($con);
                 $affectedRows += 1;
             } else {
                 $affectedRows += $this->doUpdate($con);
             }
             $this->resetModified();
         }
         if ($this->groupsScheduledForDeletion !== null) {
             if (!$this->groupsScheduledForDeletion->isEmpty()) {
                 $pks = array();
                 foreach ($this->groupsScheduledForDeletion as $entry) {
                     $entryPk = [];
                     $entryPk[1] = $this->getId();
                     $entryPk[0] = $entry->getId();
                     $pks[] = $entryPk;
                 }
                 \keeko\core\model\GroupActionQuery::create()->filterByPrimaryKeys($pks)->delete($con);
                 $this->groupsScheduledForDeletion = null;
             }
         }
         if ($this->collGroups) {
             foreach ($this->collGroups as $group) {
                 if (!$group->isDeleted() && ($group->isNew() || $group->isModified())) {
                     $group->save($con);
                 }
             }
         }
         if ($this->apisScheduledForDeletion !== null) {
             if (!$this->apisScheduledForDeletion->isEmpty()) {
                 \keeko\core\model\ApiQuery::create()->filterByPrimaryKeys($this->apisScheduledForDeletion->getPrimaryKeys(false))->delete($con);
                 $this->apisScheduledForDeletion = null;
             }
         }
         if ($this->collApis !== null) {
             foreach ($this->collApis as $referrerFK) {
                 if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         if ($this->groupActionsScheduledForDeletion !== null) {
             if (!$this->groupActionsScheduledForDeletion->isEmpty()) {
                 \keeko\core\model\GroupActionQuery::create()->filterByPrimaryKeys($this->groupActionsScheduledForDeletion->getPrimaryKeys(false))->delete($con);
                 $this->groupActionsScheduledForDeletion = null;
             }
         }
         if ($this->collGroupActions !== null) {
             foreach ($this->collGroupActions as $referrerFK) {
                 if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         $this->alreadyInSave = false;
     }
     return $affectedRows;
 }