Ejemplo n.º 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->aPermissionRelatedByParentId !== null) {
             if ($this->aPermissionRelatedByParentId->isModified() || $this->aPermissionRelatedByParentId->isNew()) {
                 $affectedRows += $this->aPermissionRelatedByParentId->save($con);
             }
             $this->setPermissionRelatedByParentId($this->aPermissionRelatedByParentId);
         }
         if ($this->isNew() || $this->isModified()) {
             // persist changes
             if ($this->isNew()) {
                 $this->doInsert($con);
             } else {
                 $this->doUpdate($con);
             }
             $affectedRows += 1;
             $this->resetModified();
         }
         if ($this->rolesScheduledForDeletion !== null) {
             if (!$this->rolesScheduledForDeletion->isEmpty()) {
                 $pks = array();
                 foreach ($this->rolesScheduledForDeletion as $entry) {
                     $entryPk = [];
                     $entryPk[1] = $this->getId();
                     $entryPk[0] = $entry->getId();
                     $pks[] = $entryPk;
                 }
                 \Alchemy\Component\Cerberus\Model\RolePermissionQuery::create()->filterByPrimaryKeys($pks)->delete($con);
                 $this->rolesScheduledForDeletion = null;
             }
         }
         if ($this->collRoles) {
             foreach ($this->collRoles as $role) {
                 if (!$role->isDeleted() && ($role->isNew() || $role->isModified())) {
                     $role->save($con);
                 }
             }
         }
         if ($this->permissionsRelatedByIdScheduledForDeletion !== null) {
             if (!$this->permissionsRelatedByIdScheduledForDeletion->isEmpty()) {
                 \Alchemy\Component\Cerberus\Model\PermissionQuery::create()->filterByPrimaryKeys($this->permissionsRelatedByIdScheduledForDeletion->getPrimaryKeys(false))->delete($con);
                 $this->permissionsRelatedByIdScheduledForDeletion = null;
             }
         }
         if ($this->collPermissionsRelatedById !== null) {
             foreach ($this->collPermissionsRelatedById as $referrerFK) {
                 if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         if ($this->rolePermissionsScheduledForDeletion !== null) {
             if (!$this->rolePermissionsScheduledForDeletion->isEmpty()) {
                 \Alchemy\Component\Cerberus\Model\RolePermissionQuery::create()->filterByPrimaryKeys($this->rolePermissionsScheduledForDeletion->getPrimaryKeys(false))->delete($con);
                 $this->rolePermissionsScheduledForDeletion = null;
             }
         }
         if ($this->collRolePermissions !== null) {
             foreach ($this->collRolePermissions as $referrerFK) {
                 if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         $this->alreadyInSave = false;
     }
     return $affectedRows;
 }
Ejemplo n.º 2
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;
         if ($this->isNew() || $this->isModified()) {
             // persist changes
             if ($this->isNew()) {
                 $this->doInsert($con);
             } else {
                 $this->doUpdate($con);
             }
             $affectedRows += 1;
             $this->resetModified();
         }
         if ($this->usersScheduledForDeletion !== null) {
             if (!$this->usersScheduledForDeletion->isEmpty()) {
                 $pks = array();
                 foreach ($this->usersScheduledForDeletion as $entry) {
                     $entryPk = [];
                     $entryPk[1] = $this->getId();
                     $entryPk[0] = $entry->getId();
                     $pks[] = $entryPk;
                 }
                 \Alchemy\Component\Cerberus\Model\UserRoleQuery::create()->filterByPrimaryKeys($pks)->delete($con);
                 $this->usersScheduledForDeletion = null;
             }
         }
         if ($this->collUsers) {
             foreach ($this->collUsers as $user) {
                 if (!$user->isDeleted() && ($user->isNew() || $user->isModified())) {
                     $user->save($con);
                 }
             }
         }
         if ($this->permissionsScheduledForDeletion !== null) {
             if (!$this->permissionsScheduledForDeletion->isEmpty()) {
                 $pks = array();
                 foreach ($this->permissionsScheduledForDeletion as $entry) {
                     $entryPk = [];
                     $entryPk[0] = $this->getId();
                     $entryPk[1] = $entry->getId();
                     $pks[] = $entryPk;
                 }
                 \Alchemy\Component\Cerberus\Model\RolePermissionQuery::create()->filterByPrimaryKeys($pks)->delete($con);
                 $this->permissionsScheduledForDeletion = null;
             }
         }
         if ($this->collPermissions) {
             foreach ($this->collPermissions as $permission) {
                 if (!$permission->isDeleted() && ($permission->isNew() || $permission->isModified())) {
                     $permission->save($con);
                 }
             }
         }
         if ($this->userRolesScheduledForDeletion !== null) {
             if (!$this->userRolesScheduledForDeletion->isEmpty()) {
                 \Alchemy\Component\Cerberus\Model\UserRoleQuery::create()->filterByPrimaryKeys($this->userRolesScheduledForDeletion->getPrimaryKeys(false))->delete($con);
                 $this->userRolesScheduledForDeletion = null;
             }
         }
         if ($this->collUserRoles !== null) {
             foreach ($this->collUserRoles as $referrerFK) {
                 if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         if ($this->rolePermissionsScheduledForDeletion !== null) {
             if (!$this->rolePermissionsScheduledForDeletion->isEmpty()) {
                 \Alchemy\Component\Cerberus\Model\RolePermissionQuery::create()->filterByPrimaryKeys($this->rolePermissionsScheduledForDeletion->getPrimaryKeys(false))->delete($con);
                 $this->rolePermissionsScheduledForDeletion = null;
             }
         }
         if ($this->collRolePermissions !== null) {
             foreach ($this->collRolePermissions as $referrerFK) {
                 if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         $this->alreadyInSave = false;
     }
     return $affectedRows;
 }