/** * 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 PropelPDO $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(PropelPDO $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 coresponding set // method. This object relates to these object(s) by a // foreign key reference. if ($this->aDonor !== null) { if ($this->aDonor->isModified() || $this->aDonor->isNew()) { $affectedRows += $this->aDonor->save($con); } $this->setDonor($this->aDonor); } if ($this->aGiftTypeRelatedByGiftType !== null) { if ($this->aGiftTypeRelatedByGiftType->isModified() || $this->aGiftTypeRelatedByGiftType->isNew()) { $affectedRows += $this->aGiftTypeRelatedByGiftType->save($con); } $this->setGiftTypeRelatedByGiftType($this->aGiftTypeRelatedByGiftType); } if ($this->aCampaign !== null) { if ($this->aCampaign->isModified() || $this->aCampaign->isNew()) { $affectedRows += $this->aCampaign->save($con); } $this->setCampaign($this->aCampaign); } if ($this->aFund !== null) { if ($this->aFund->isModified() || $this->aFund->isNew()) { $affectedRows += $this->aFund->save($con); } $this->setFund($this->aFund); } if ($this->isNew()) { $this->modifiedColumns[] = DonationPeer::ID; } // If this object has been modified, then save it to the database. if ($this->isModified()) { if ($this->isNew()) { $pk = DonationPeer::doInsert($this, $con); $affectedRows += 1; // we are assuming that there is only 1 row per doInsert() which // should always be true here (even though technically // BasePeer::doInsert() can insert multiple rows). $this->setId($pk); //[IMV] update autoincrement primary key $this->setNew(false); } else { $affectedRows += DonationPeer::doUpdate($this, $con); } $this->resetModified(); // [HL] After being saved an object is no longer 'modified' } $this->alreadyInSave = false; } return $affectedRows; }
/** * Add or edit gifts * CODE: gift_create */ public function executeUpdateGift(sfWebRequest $request) { # security if (!$this->getUser()->hasCredential(array('Administrator'), false)) { $this->getUser()->setFlash("warning", 'You don\'t have permission to access this url ' . $request->getReferer()); $this->redirect('dashboard/index'); } if ($request->getParameter('id')) { $gift_type = GiftTypePeer::retrieveByPK($request->getParameter('id')); $this->forward404Unless($gift_type); $this->title = 'Edit gift type'; $success = 'Gift type information has been successfully changed!'; } else { $gift_type = new GiftType(); $this->title = 'Add new gift type'; $success = 'Gift type information has been successfully created!'; } $this->back = $request->getReferer(); $this->form = new GiftTypeForm($gift_type); if ($request->isMethod('post')) { $this->referer = $request->getReferer(); $this->form->bind($request->getParameter('gType')); if ($this->form->isValid()) { $gift_type->setGiftTypeDesc($this->form->getValue('gift_type_desc')); $gift_type->save(); $this->getUser()->setFlash('success', $success); $last = $request->getParameter('back'); if (strstr($last, 'donation/create')) { $back_url = $last; } else { $back_url = 'gift'; } $this->redirect($back_url); } } else { # Set referer URL $this->referer = $request->getReferer() ? $request->getReferer() : '@gift'; } $this->gift_type = $gift_type; }