示例#1
0
 /**
  * Retrieve a single object by event id.
  *
  * @param      int $pk the primary key.
  * @param      PropelPDO $con the connection to use
  * @return     EventReservation
  */
 public static function retrieveByEventId($pk)
 {
     $criteria = new Criteria();
     $criteria->add(EventReservationPeer::EVENT_ID, $pk);
     $v = EventReservationPeer::doSelect($criteria);
     return $v;
 }
示例#2
0
 public function executeIndex(sfWebRequest $request)
 {
     #security
     if (!$this->getUser()->hasCredential(array('Administrator', 'Staff', 'Member', 'Volunteer'), false)) {
         $this->getUser()->setFlash("warning", 'You don\'t have permission to access this url ' . $request->getReferer());
         $this->redirect('dashboard/index');
     }
     $this->event_reservation_list = EventReservationPeer::doSelect(new Criteria());
 }
 /**
  * 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(EventReservationPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(EventReservationPeer::DATABASE_NAME);
         $criteria->add(EventReservationPeer::ID, $pks, Criteria::IN);
         $objs = EventReservationPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
示例#4
0
 /**
  * Gets an array of EventReservation 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 Event has previously been saved, it will retrieve
  * related EventReservations from storage. If this Event 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 EventReservation[]
  * @throws     PropelException
  */
 public function getEventReservations($criteria = null, PropelPDO $con = null)
 {
     if ($criteria === null) {
         $criteria = new Criteria(EventPeer::DATABASE_NAME);
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collEventReservations === null) {
         if ($this->isNew()) {
             $this->collEventReservations = array();
         } else {
             $criteria->add(EventReservationPeer::EVENT_ID, $this->id);
             EventReservationPeer::addSelectColumns($criteria);
             $this->collEventReservations = EventReservationPeer::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(EventReservationPeer::EVENT_ID, $this->id);
             EventReservationPeer::addSelectColumns($criteria);
             if (!isset($this->lastEventReservationCriteria) || !$this->lastEventReservationCriteria->equals($criteria)) {
                 $this->collEventReservations = EventReservationPeer::doSelect($criteria, $con);
             }
         }
     }
     $this->lastEventReservationCriteria = $criteria;
     return $this->collEventReservations;
 }