Esempio n. 1
0
 public function executeDelete(sfWebRequest $request)
 {
     $request->checkCSRFProtection();
     $this->forward404Unless($reservationreason = ReservationreasonPeer::retrieveByPk($request->getParameter('id')), sprintf('Object reservationreason does not exist (%s).', $request->getParameter('id')));
     $activityId = $reservationreason->getActivityId();
     $reservationreason->delete();
     $this->redirect('reservationreason/index?activityId=' . $activityId);
 }
Esempio n. 2
0
 /**
  * This is a method for emulating ON DELETE CASCADE for DBs that don't support this
  * feature (like MySQL or SQLite).
  *
  * This method is not very speedy because it must perform a query first to get
  * the implicated records and then perform the deletes by calling those Peer classes.
  *
  * This method should be used within a transaction if possible.
  *
  * @param      Criteria $criteria
  * @param      PropelPDO $con
  * @return     int The number of affected rows (if supported by underlying database driver).
  */
 protected static function doOnDeleteCascade(Criteria $criteria, PropelPDO $con)
 {
     // initialize var to track total num of affected rows
     $affectedRows = 0;
     // first find the objects that are implicated by the $criteria
     $objects = ActivityPeer::doSelect($criteria, $con);
     foreach ($objects as $obj) {
         // delete related ActivityHasFeature objects
         $c = new Criteria(ActivityHasFeaturePeer::DATABASE_NAME);
         $c->add(ActivityHasFeaturePeer::ACTIVITY_ID, $obj->getId());
         $affectedRows += ActivityHasFeaturePeer::doDelete($c, $con);
         // delete related Reservation objects
         $c = new Criteria(ReservationPeer::DATABASE_NAME);
         $c->add(ReservationPeer::ACTIVITY_ID, $obj->getId());
         $affectedRows += ReservationPeer::doDelete($c, $con);
         // delete related Reservationreason objects
         $c = new Criteria(ReservationreasonPeer::DATABASE_NAME);
         $c->add(ReservationreasonPeer::ACTIVITY_ID, $obj->getId());
         $affectedRows += ReservationreasonPeer::doDelete($c, $con);
         // delete related RoomHasActivity objects
         $c = new Criteria(RoomHasActivityPeer::DATABASE_NAME);
         $c->add(RoomHasActivityPeer::ACTIVITY_ID, $obj->getId());
         $affectedRows += RoomHasActivityPeer::doDelete($c, $con);
         // delete related Subscription objects
         $c = new Criteria(SubscriptionPeer::DATABASE_NAME);
         $c->add(SubscriptionPeer::ACTIVITY_ID, $obj->getId());
         $affectedRows += SubscriptionPeer::doDelete($c, $con);
         // delete related UsergroupHasActivity objects
         $c = new Criteria(UsergroupHasActivityPeer::DATABASE_NAME);
         $c->add(UsergroupHasActivityPeer::ACTIVITY_ID, $obj->getId());
         $affectedRows += UsergroupHasActivityPeer::doDelete($c, $con);
     }
     return $affectedRows;
 }
Esempio n. 3
0
 /**
  * Selects a collection of Reservation objects pre-filled with all related objects except ReservationRelatedByReservationparentId.
  *
  * @param      Criteria  $c
  * @param      PropelPDO $con
  * @param      String    $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN
  * @return     array Array of Reservation objects.
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function doSelectJoinAllExceptReservationRelatedByReservationparentId(Criteria $c, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     $c = clone $c;
     // Set the correct dbName if it has not been overridden
     // $c->getDbName() will return the same object if not set to another value
     // so == check is okay and faster
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     ReservationPeer::addSelectColumns($c);
     $startcol2 = ReservationPeer::NUM_COLUMNS - ReservationPeer::NUM_LAZY_LOAD_COLUMNS;
     RoomprofilePeer::addSelectColumns($c);
     $startcol3 = $startcol2 + (RoomprofilePeer::NUM_COLUMNS - RoomprofilePeer::NUM_LAZY_LOAD_COLUMNS);
     ActivityPeer::addSelectColumns($c);
     $startcol4 = $startcol3 + (ActivityPeer::NUM_COLUMNS - ActivityPeer::NUM_LAZY_LOAD_COLUMNS);
     ReservationreasonPeer::addSelectColumns($c);
     $startcol5 = $startcol4 + (ReservationreasonPeer::NUM_COLUMNS - ReservationreasonPeer::NUM_LAZY_LOAD_COLUMNS);
     UsergroupPeer::addSelectColumns($c);
     $startcol6 = $startcol5 + (UsergroupPeer::NUM_COLUMNS - UsergroupPeer::NUM_LAZY_LOAD_COLUMNS);
     CardPeer::addSelectColumns($c);
     $startcol7 = $startcol6 + (CardPeer::NUM_COLUMNS - CardPeer::NUM_LAZY_LOAD_COLUMNS);
     UserPeer::addSelectColumns($c);
     $startcol8 = $startcol7 + (UserPeer::NUM_COLUMNS - UserPeer::NUM_LAZY_LOAD_COLUMNS);
     $c->addJoin(array(ReservationPeer::ROOMPROFILE_ID), array(RoomprofilePeer::ID), $join_behavior);
     $c->addJoin(array(ReservationPeer::ACTIVITY_ID), array(ActivityPeer::ID), $join_behavior);
     $c->addJoin(array(ReservationPeer::RESERVATIONREASON_ID), array(ReservationreasonPeer::ID), $join_behavior);
     $c->addJoin(array(ReservationPeer::USERGROUP_ID), array(UsergroupPeer::ID), $join_behavior);
     $c->addJoin(array(ReservationPeer::CARD_ID), array(CardPeer::ID), $join_behavior);
     $c->addJoin(array(ReservationPeer::USER_ID), array(UserPeer::ID), $join_behavior);
     $stmt = BasePeer::doSelect($c, $con);
     $results = array();
     while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $key1 = ReservationPeer::getPrimaryKeyHashFromRow($row, 0);
         if (null !== ($obj1 = ReservationPeer::getInstanceFromPool($key1))) {
             // We no longer rehydrate the object, since this can cause data loss.
             // See http://propel.phpdb.org/trac/ticket/509
             // $obj1->hydrate($row, 0, true); // rehydrate
         } else {
             $omClass = ReservationPeer::getOMClass();
             $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
             $obj1 = new $cls();
             $obj1->hydrate($row);
             ReservationPeer::addInstanceToPool($obj1, $key1);
         }
         // if obj1 already loaded
         // Add objects for joined Roomprofile rows
         $key2 = RoomprofilePeer::getPrimaryKeyHashFromRow($row, $startcol2);
         if ($key2 !== null) {
             $obj2 = RoomprofilePeer::getInstanceFromPool($key2);
             if (!$obj2) {
                 $omClass = RoomprofilePeer::getOMClass();
                 $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
                 $obj2 = new $cls();
                 $obj2->hydrate($row, $startcol2);
                 RoomprofilePeer::addInstanceToPool($obj2, $key2);
             }
             // if $obj2 already loaded
             // Add the $obj1 (Reservation) to the collection in $obj2 (Roomprofile)
             $obj2->addReservation($obj1);
         }
         // if joined row is not null
         // Add objects for joined Activity rows
         $key3 = ActivityPeer::getPrimaryKeyHashFromRow($row, $startcol3);
         if ($key3 !== null) {
             $obj3 = ActivityPeer::getInstanceFromPool($key3);
             if (!$obj3) {
                 $omClass = ActivityPeer::getOMClass();
                 $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
                 $obj3 = new $cls();
                 $obj3->hydrate($row, $startcol3);
                 ActivityPeer::addInstanceToPool($obj3, $key3);
             }
             // if $obj3 already loaded
             // Add the $obj1 (Reservation) to the collection in $obj3 (Activity)
             $obj3->addReservation($obj1);
         }
         // if joined row is not null
         // Add objects for joined Reservationreason rows
         $key4 = ReservationreasonPeer::getPrimaryKeyHashFromRow($row, $startcol4);
         if ($key4 !== null) {
             $obj4 = ReservationreasonPeer::getInstanceFromPool($key4);
             if (!$obj4) {
                 $omClass = ReservationreasonPeer::getOMClass();
                 $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
                 $obj4 = new $cls();
                 $obj4->hydrate($row, $startcol4);
                 ReservationreasonPeer::addInstanceToPool($obj4, $key4);
             }
             // if $obj4 already loaded
             // Add the $obj1 (Reservation) to the collection in $obj4 (Reservationreason)
             $obj4->addReservation($obj1);
         }
         // if joined row is not null
         // Add objects for joined Usergroup rows
         $key5 = UsergroupPeer::getPrimaryKeyHashFromRow($row, $startcol5);
         if ($key5 !== null) {
             $obj5 = UsergroupPeer::getInstanceFromPool($key5);
             if (!$obj5) {
                 $omClass = UsergroupPeer::getOMClass();
                 $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
                 $obj5 = new $cls();
                 $obj5->hydrate($row, $startcol5);
                 UsergroupPeer::addInstanceToPool($obj5, $key5);
             }
             // if $obj5 already loaded
             // Add the $obj1 (Reservation) to the collection in $obj5 (Usergroup)
             $obj5->addReservation($obj1);
         }
         // if joined row is not null
         // Add objects for joined Card rows
         $key6 = CardPeer::getPrimaryKeyHashFromRow($row, $startcol6);
         if ($key6 !== null) {
             $obj6 = CardPeer::getInstanceFromPool($key6);
             if (!$obj6) {
                 $omClass = CardPeer::getOMClass();
                 $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
                 $obj6 = new $cls();
                 $obj6->hydrate($row, $startcol6);
                 CardPeer::addInstanceToPool($obj6, $key6);
             }
             // if $obj6 already loaded
             // Add the $obj1 (Reservation) to the collection in $obj6 (Card)
             $obj6->addReservation($obj1);
         }
         // if joined row is not null
         // Add objects for joined User rows
         $key7 = UserPeer::getPrimaryKeyHashFromRow($row, $startcol7);
         if ($key7 !== null) {
             $obj7 = UserPeer::getInstanceFromPool($key7);
             if (!$obj7) {
                 $omClass = UserPeer::getOMClass();
                 $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
                 $obj7 = new $cls();
                 $obj7->hydrate($row, $startcol7);
                 UserPeer::addInstanceToPool($obj7, $key7);
             }
             // if $obj7 already loaded
             // Add the $obj1 (Reservation) to the collection in $obj7 (User)
             $obj7->addReservation($obj1);
         }
         // if joined row is not null
         $results[] = $obj1;
     }
     $stmt->closeCursor();
     return $results;
 }
Esempio n. 4
0
 /**
  * Populates the object using an array.
  *
  * This is particularly useful when populating an object from one of the
  * request arrays (e.g. $_POST).  This method goes through the column
  * names, checking to see whether a matching key exists in populated
  * array. If so the setByName() method is called for that column.
  *
  * You can specify the key type of the array by additionally passing one
  * of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME,
  * BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM.
  * The default key type is the column's phpname (e.g. 'AuthorId')
  *
  * @param      array  $arr     An array to populate the object from.
  * @param      string $keyType The type of keys the array uses.
  * @return     void
  */
 public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME)
 {
     $keys = ReservationreasonPeer::getFieldNames($keyType);
     if (array_key_exists($keys[0], $arr)) {
         $this->setId($arr[$keys[0]]);
     }
     if (array_key_exists($keys[1], $arr)) {
         $this->setActivityId($arr[$keys[1]]);
     }
     if (array_key_exists($keys[2], $arr)) {
         $this->setName($arr[$keys[2]]);
     }
 }
Esempio n. 5
0
 /**
  * Get the associated Reservationreason object
  *
  * @param      PropelPDO Optional Connection object.
  * @return     Reservationreason The associated Reservationreason object.
  * @throws     PropelException
  */
 public function getReservationreason(PropelPDO $con = null)
 {
     if ($this->aReservationreason === null && $this->reservationreason_id !== null) {
         $c = new Criteria(ReservationreasonPeer::DATABASE_NAME);
         $c->add(ReservationreasonPeer::ID, $this->reservationreason_id);
         $this->aReservationreason = ReservationreasonPeer::doSelectOne($c, $con);
         /* The following can be used additionally to
         		   guarantee the related object contains a reference
         		   to this object.  This level of coupling may, however, be
         		   undesirable since it could result in an only partially populated collection
         		   in the referenced object.
         		   $this->aReservationreason->addReservations($this);
         		 */
     }
     return $this->aReservationreason;
 }
 /**
  * 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(ReservationreasonPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(ReservationreasonPeer::DATABASE_NAME);
         $criteria->add(ReservationreasonPeer::ID, $pks, Criteria::IN);
         $objs = ReservationreasonPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
Esempio n. 7
0
 public function setDefaultActivity($activity)
 {
     $this->getObject()->setActivity($activity);
     $this->setDefault('Activity_id', $activity->getId());
     $this->widgetSchema['Activity_id'] = new sfWidgetFormInputHidden();
     $this->widgetSchema->setLabel('Activity_id', 'Activity');
     if ($activity->countReservationreasons() > 0) {
         $this->widgetSchema['ReservationReason_id'] = new sfWidgetFormPropelChoice(array('model' => 'Reservationreason', 'add_empty' => false, 'criteria' => ReservationreasonPeer::getFromActivityCriteria($activity->getId())));
         $this->widgetSchema->setLabel('ReservationReason_id', 'Reason');
         // FIXME: On dirait que le critère n'est pas pris en compte : bug de symfony ?
         $this->validatorSchema['ReservationReason_id'] = new sfValidatorPropelChoice(array('model' => 'Reservationreason', 'column' => 'id', 'required' => true, 'criteria' => ReservationreasonPeer::getFromActivityCriteria($activity->getId())));
     }
     if ($this->getObject()->isNew()) {
         $this->setDefault('guests_count', $activity->getMinimumOccupation() - 1);
     }
 }
Esempio n. 8
0
 /**
  * Returns the number of related Reservationreason objects.
  *
  * @param      Criteria $criteria
  * @param      boolean $distinct
  * @param      PropelPDO $con
  * @return     int Count of related Reservationreason objects.
  * @throws     PropelException
  */
 public function countReservationreasons(Criteria $criteria = null, $distinct = false, PropelPDO $con = null)
 {
     if ($criteria === null) {
         $criteria = new Criteria(ActivityPeer::DATABASE_NAME);
     } else {
         $criteria = clone $criteria;
     }
     if ($distinct) {
         $criteria->setDistinct();
     }
     $count = null;
     if ($this->collReservationreasons === null) {
         if ($this->isNew()) {
             $count = 0;
         } else {
             $criteria->add(ReservationreasonPeer::ACTIVITY_ID, $this->id);
             $count = ReservationreasonPeer::doCount($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 count of the collection.
             $criteria->add(ReservationreasonPeer::ACTIVITY_ID, $this->id);
             if (!isset($this->lastReservationreasonCriteria) || !$this->lastReservationreasonCriteria->equals($criteria)) {
                 $count = ReservationreasonPeer::doCount($criteria, $con);
             } else {
                 $count = count($this->collReservationreasons);
             }
         } else {
             $count = count($this->collReservationreasons);
         }
     }
     return $count;
 }