/** * 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->aOwner !== null) { if ($this->aOwner->isModified() || $this->aOwner->isNew()) { $affectedRows += $this->aOwner->save($con); } $this->setOwner($this->aOwner); } if ($this->isNew() || $this->isModified()) { // persist changes if ($this->isNew()) { $this->doInsert($con); $affectedRows += 1; } else { $affectedRows += $this->doUpdate($con); } $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; } \Models\UserGroupQuery::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->packPermissionsScheduledForDeletion !== null) { if (!$this->packPermissionsScheduledForDeletion->isEmpty()) { \Models\PackPermissionQuery::create()->filterByPrimaryKeys($this->packPermissionsScheduledForDeletion->getPrimaryKeys(false))->delete($con); $this->packPermissionsScheduledForDeletion = null; } } if ($this->collPackPermissions !== null) { foreach ($this->collPackPermissions as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } if ($this->userGroupsScheduledForDeletion !== null) { if (!$this->userGroupsScheduledForDeletion->isEmpty()) { \Models\UserGroupQuery::create()->filterByPrimaryKeys($this->userGroupsScheduledForDeletion->getPrimaryKeys(false))->delete($con); $this->userGroupsScheduledForDeletion = null; } } if ($this->collUserGroups !== null) { foreach ($this->collUserGroups as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } $this->alreadyInSave = false; } return $affectedRows; }
/** * 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); $affectedRows += 1; } else { $affectedRows += $this->doUpdate($con); } $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; } \Models\UserGroupQuery::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->userGroupsScheduledForDeletion !== null) { if (!$this->userGroupsScheduledForDeletion->isEmpty()) { \Models\UserGroupQuery::create()->filterByPrimaryKeys($this->userGroupsScheduledForDeletion->getPrimaryKeys(false))->delete($con); $this->userGroupsScheduledForDeletion = null; } } if ($this->collUserGroups !== null) { foreach ($this->collUserGroups as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } if ($this->sharedsScheduledForDeletion !== null) { if (!$this->sharedsScheduledForDeletion->isEmpty()) { foreach ($this->sharedsScheduledForDeletion as $shared) { // need to save related object because we set the relation to null $shared->save($con); } $this->sharedsScheduledForDeletion = null; } } if ($this->collShareds !== null) { foreach ($this->collShareds as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } $this->alreadyInSave = false; } return $affectedRows; }
/** * 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); $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[0] = $this->getId(); $entryPk[1] = $entry->getId(); $pks[] = $entryPk; } \Models\UserGroupQuery::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->identitiesScheduledForDeletion !== null) { if (!$this->identitiesScheduledForDeletion->isEmpty()) { \Models\IdentityQuery::create()->filterByPrimaryKeys($this->identitiesScheduledForDeletion->getPrimaryKeys(false))->delete($con); $this->identitiesScheduledForDeletion = null; } } if ($this->collIdentities !== null) { foreach ($this->collIdentities as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } if ($this->packPermissionsScheduledForDeletion !== null) { if (!$this->packPermissionsScheduledForDeletion->isEmpty()) { \Models\PackPermissionQuery::create()->filterByPrimaryKeys($this->packPermissionsScheduledForDeletion->getPrimaryKeys(false))->delete($con); $this->packPermissionsScheduledForDeletion = null; } } if ($this->collPackPermissions !== null) { foreach ($this->collPackPermissions as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } if ($this->packsScheduledForDeletion !== null) { if (!$this->packsScheduledForDeletion->isEmpty()) { \Models\PackQuery::create()->filterByPrimaryKeys($this->packsScheduledForDeletion->getPrimaryKeys(false))->delete($con); $this->packsScheduledForDeletion = null; } } if ($this->collPacks !== null) { foreach ($this->collPacks as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } if ($this->myGroupsScheduledForDeletion !== null) { if (!$this->myGroupsScheduledForDeletion->isEmpty()) { \Models\GroupQuery::create()->filterByPrimaryKeys($this->myGroupsScheduledForDeletion->getPrimaryKeys(false))->delete($con); $this->myGroupsScheduledForDeletion = null; } } if ($this->collMyGroups !== null) { foreach ($this->collMyGroups as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } if ($this->commentsScheduledForDeletion !== null) { if (!$this->commentsScheduledForDeletion->isEmpty()) { \Models\CommentQuery::create()->filterByPrimaryKeys($this->commentsScheduledForDeletion->getPrimaryKeys(false))->delete($con); $this->commentsScheduledForDeletion = null; } } if ($this->collComments !== null) { foreach ($this->collComments as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } if ($this->userGroupsScheduledForDeletion !== null) { if (!$this->userGroupsScheduledForDeletion->isEmpty()) { \Models\UserGroupQuery::create()->filterByPrimaryKeys($this->userGroupsScheduledForDeletion->getPrimaryKeys(false))->delete($con); $this->userGroupsScheduledForDeletion = null; } } if ($this->collUserGroups !== null) { foreach ($this->collUserGroups as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } $this->alreadyInSave = false; } return $affectedRows; }
/** * 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); $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[0] = $this->getId(); $entryPk[1] = $entry->getId(); $pks[] = $entryPk; } \Models\UserGroupQuery::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->notesScheduledForDeletion !== null) { if (!$this->notesScheduledForDeletion->isEmpty()) { \Models\NoteQuery::create()->filterByPrimaryKeys($this->notesScheduledForDeletion->getPrimaryKeys(false))->delete($con); $this->notesScheduledForDeletion = null; } } if ($this->collNotes !== null) { foreach ($this->collNotes as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } if ($this->categoriesScheduledForDeletion !== null) { if (!$this->categoriesScheduledForDeletion->isEmpty()) { \Models\CategoryQuery::create()->filterByPrimaryKeys($this->categoriesScheduledForDeletion->getPrimaryKeys(false))->delete($con); $this->categoriesScheduledForDeletion = null; } } if ($this->collCategories !== null) { foreach ($this->collCategories as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } if ($this->notificationsRelatedByUserIdScheduledForDeletion !== null) { if (!$this->notificationsRelatedByUserIdScheduledForDeletion->isEmpty()) { \Models\NotificationQuery::create()->filterByPrimaryKeys($this->notificationsRelatedByUserIdScheduledForDeletion->getPrimaryKeys(false))->delete($con); $this->notificationsRelatedByUserIdScheduledForDeletion = null; } } if ($this->collNotificationsRelatedByUserId !== null) { foreach ($this->collNotificationsRelatedByUserId as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } if ($this->notificationsRelatedByOriginTypeOriginIdScheduledForDeletion !== null) { if (!$this->notificationsRelatedByOriginTypeOriginIdScheduledForDeletion->isEmpty()) { foreach ($this->notificationsRelatedByOriginTypeOriginIdScheduledForDeletion as $notificationRelatedByOriginTypeOriginId) { // need to save related object because we set the relation to null $notificationRelatedByOriginTypeOriginId->save($con); } $this->notificationsRelatedByOriginTypeOriginIdScheduledForDeletion = null; } } if ($this->collNotificationsRelatedByOriginTypeOriginId !== null) { foreach ($this->collNotificationsRelatedByOriginTypeOriginId as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } if ($this->commentsScheduledForDeletion !== null) { if (!$this->commentsScheduledForDeletion->isEmpty()) { \Models\CommentQuery::create()->filterByPrimaryKeys($this->commentsScheduledForDeletion->getPrimaryKeys(false))->delete($con); $this->commentsScheduledForDeletion = null; } } if ($this->collComments !== null) { foreach ($this->collComments as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } if ($this->identitiesScheduledForDeletion !== null) { if (!$this->identitiesScheduledForDeletion->isEmpty()) { \Models\IdentityQuery::create()->filterByPrimaryKeys($this->identitiesScheduledForDeletion->getPrimaryKeys(false))->delete($con); $this->identitiesScheduledForDeletion = null; } } if ($this->collIdentities !== null) { foreach ($this->collIdentities as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } if ($this->userGroupsScheduledForDeletion !== null) { if (!$this->userGroupsScheduledForDeletion->isEmpty()) { \Models\UserGroupQuery::create()->filterByPrimaryKeys($this->userGroupsScheduledForDeletion->getPrimaryKeys(false))->delete($con); $this->userGroupsScheduledForDeletion = null; } } if ($this->collUserGroups !== null) { foreach ($this->collUserGroups as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } if ($this->sharedsScheduledForDeletion !== null) { if (!$this->sharedsScheduledForDeletion->isEmpty()) { foreach ($this->sharedsScheduledForDeletion as $shared) { // need to save related object because we set the relation to null $shared->save($con); } $this->sharedsScheduledForDeletion = null; } } if ($this->collShareds !== null) { foreach ($this->collShareds as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } $this->alreadyInSave = false; } return $affectedRows; }