/** * Searches for donors * CODE: donor_index */ public function executeIndex(sfWebRequest $request) { 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'); } $this->donor_list = DonorPeer::doSelect(new Criteria()); }
/** * Gets an array of Donor objects which contain a foreign key that references this object. * * If this collection has already been initialized with an identical Criteria, it returns the collection. * Otherwise if this Person has previously been saved, it will retrieve * related Donors from storage. If this Person is new, it will return * an empty collection or the current collection, the criteria is ignored on a new object. * * @param PropelPDO $con * @param Criteria $criteria * @return array Donor[] * @throws PropelException */ public function getDonors($criteria = null, PropelPDO $con = null) { if ($criteria === null) { $criteria = new Criteria(PersonPeer::DATABASE_NAME); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } if ($this->collDonors === null) { if ($this->isNew()) { $this->collDonors = array(); } else { $criteria->add(DonorPeer::PERSON_ID, $this->id); DonorPeer::addSelectColumns($criteria); $this->collDonors = DonorPeer::doSelect($criteria, $con); } } else { // criteria has no effect for a new object if (!$this->isNew()) { // the following code is to determine if a new query is // called for. If the criteria is the same as the last // one, just return the collection. $criteria->add(DonorPeer::PERSON_ID, $this->id); DonorPeer::addSelectColumns($criteria); if (!isset($this->lastDonorCriteria) || !$this->lastDonorCriteria->equals($criteria)) { $this->collDonors = DonorPeer::doSelect($criteria, $con); } } } $this->lastDonorCriteria = $criteria; return $this->collDonors; }
/** * Retrieve multiple objects by pkey. * * @param array $pks List of primary keys * @param PropelPDO $con the connection to use * @throws PropelException Any exceptions caught during processing will be * rethrown wrapped into a PropelException. */ public static function retrieveByPKs($pks, PropelPDO $con = null) { if ($con === null) { $con = Propel::getConnection(DonorPeer::DATABASE_NAME, Propel::CONNECTION_READ); } $objs = null; if (empty($pks)) { $objs = array(); } else { $criteria = new Criteria(DonorPeer::DATABASE_NAME); $criteria->add(DonorPeer::ID, $pks, Criteria::IN); $objs = DonorPeer::doSelect($criteria, $con); } return $objs; }