public function deleteOldReservationOtherMembers()
 {
     $r_id = $this->getObject()->getId();
     if (!is_null($r_id) && !empty($r_id)) {
         $c = new Criteria();
         $c->add(ReservationOtherMembersPeer::RESERVATION_ID, $r_id);
         $o_members = ReservationOtherMembersPeer::doSelect($c);
         if (!is_null($o_members)) {
             foreach ($o_members as $member) {
                 $member->delete();
             }
         }
     }
 }
 /**
  * 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 = ReservationOtherMembersPeer::getFieldNames($keyType);
     if (array_key_exists($keys[0], $arr)) {
         $this->setReservationId($arr[$keys[0]]);
     }
     if (array_key_exists($keys[1], $arr)) {
         $this->setUserId($arr[$keys[1]]);
     }
     if (array_key_exists($keys[2], $arr)) {
         $this->setId($arr[$keys[2]]);
     }
 }
Beispiel #3
0
 /**
  * If this collection has already been initialized with
  * an identical criteria, it returns the collection.
  * Otherwise if this User is new, it will return
  * an empty collection; or if this User has previously
  * been saved, it will retrieve related ReservationOtherMemberss from storage.
  *
  * This method is protected by default in order to keep the public
  * api reasonable.  You can provide public methods for those you
  * actually need in User.
  */
 public function getReservationOtherMemberssJoinReservation($criteria = null, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     if ($criteria === null) {
         $criteria = new Criteria(UserPeer::DATABASE_NAME);
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collReservationOtherMemberss === null) {
         if ($this->isNew()) {
             $this->collReservationOtherMemberss = array();
         } else {
             $criteria->add(ReservationOtherMembersPeer::USER_ID, $this->id);
             $this->collReservationOtherMemberss = ReservationOtherMembersPeer::doSelectJoinReservation($criteria, $con, $join_behavior);
         }
     } else {
         // 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(ReservationOtherMembersPeer::USER_ID, $this->id);
         if (!isset($this->lastReservationOtherMembersCriteria) || !$this->lastReservationOtherMembersCriteria->equals($criteria)) {
             $this->collReservationOtherMemberss = ReservationOtherMembersPeer::doSelectJoinReservation($criteria, $con, $join_behavior);
         }
     }
     $this->lastReservationOtherMembersCriteria = $criteria;
     return $this->collReservationOtherMemberss;
 }
 /**
  * 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 = ReservationPeer::doSelect($criteria, $con);
     foreach ($objects as $obj) {
         // delete related ReservationOtherMembers objects
         $c = new Criteria(ReservationOtherMembersPeer::DATABASE_NAME);
         $c->add(ReservationOtherMembersPeer::RESERVATION_ID, $obj->getId());
         $affectedRows += ReservationOtherMembersPeer::doDelete($c, $con);
     }
     return $affectedRows;
 }
 /**
  * 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(ReservationOtherMembersPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(ReservationOtherMembersPeer::DATABASE_NAME);
         $criteria->add(ReservationOtherMembersPeer::ID, $pks, Criteria::IN);
         $objs = ReservationOtherMembersPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
 public function setDefaultCustomUsers()
 {
     $r_id = $this->getObject()->getId();
     //print ('Current reservation ID: '.$r_id.'<br/>');
     if (!is_null($r_id) && !empty($r_id)) {
         $c = new Criteria();
         $c->add(ReservationOtherMembersPeer::RESERVATION_ID, $r_id);
         $o_members = ReservationOtherMembersPeer::doSelect($c);
         //print ('All other members: <br/>');
         //print_r($o_members);
         $values = array();
         if (!is_null($o_members)) {
             foreach ($o_members as $member) {
                 $values[] = $member->getUserId();
             }
         }
         $this->setDefault('reservation_has_user_list', $values);
     }
 }
Beispiel #7
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 = UserPeer::doSelect($criteria, $con);
     foreach ($objects as $obj) {
         // delete related Message objects
         $c = new Criteria(MessagePeer::DATABASE_NAME);
         $c->add(MessagePeer::RECIPIENT_ID, $obj->getId());
         $affectedRows += MessagePeer::doDelete($c, $con);
         // delete related Message objects
         $c = new Criteria(MessagePeer::DATABASE_NAME);
         $c->add(MessagePeer::SENDER_ID, $obj->getId());
         $affectedRows += MessagePeer::doDelete($c, $con);
         // delete related Message objects
         $c = new Criteria(MessagePeer::DATABASE_NAME);
         $c->add(MessagePeer::OWNER_ID, $obj->getId());
         $affectedRows += MessagePeer::doDelete($c, $con);
         // delete related Reservation objects
         $c = new Criteria(ReservationPeer::DATABASE_NAME);
         $c->add(ReservationPeer::USER_ID, $obj->getId());
         $affectedRows += ReservationPeer::doDelete($c, $con);
         // delete related ReservationOtherMembers objects
         $c = new Criteria(ReservationOtherMembersPeer::DATABASE_NAME);
         $c->add(ReservationOtherMembersPeer::USER_ID, $obj->getId());
         $affectedRows += ReservationOtherMembersPeer::doDelete($c, $con);
         // delete related Subscription objects
         $c = new Criteria(SubscriptionPeer::DATABASE_NAME);
         $c->add(SubscriptionPeer::USER_ID, $obj->getId());
         $affectedRows += SubscriptionPeer::doDelete($c, $con);
         // delete related UsergroupHasChief objects
         $c = new Criteria(UsergroupHasChiefPeer::DATABASE_NAME);
         $c->add(UsergroupHasChiefPeer::USER_ID, $obj->getId());
         $affectedRows += UsergroupHasChiefPeer::doDelete($c, $con);
         // delete related UsergroupHasUser objects
         $c = new Criteria(UsergroupHasUserPeer::DATABASE_NAME);
         $c->add(UsergroupHasUserPeer::USER_ID, $obj->getId());
         $affectedRows += UsergroupHasUserPeer::doDelete($c, $con);
         // delete related UserHasRole objects
         $c = new Criteria(UserHasRolePeer::DATABASE_NAME);
         $c->add(UserHasRolePeer::USER_ID, $obj->getId());
         $affectedRows += UserHasRolePeer::doDelete($c, $con);
     }
     return $affectedRows;
 }
Beispiel #8
0
 public function getAllPersons()
 {
     $persons = array();
     if (!is_null($this->getUser())) {
         $usergroup = $this->getUsergroup();
         if (!is_null($usergroup)) {
             $users = $usergroup->getMembers();
             foreach ($users as $user) {
                 $persons[] = $user;
             }
         } else {
             $persons[] = $this->getUser();
         }
         $c = new Criteria();
         $c->add(ReservationOtherMembersPeer::RESERVATION_ID, $this->getId());
         $uniquePersonsArray = array();
         // Initialize the unique Person ID array
         foreach ($persons as $p) {
             $uniquePersonsArray[$p->getId()] = 1;
         }
         $other_members = ReservationOtherMembersPeer::doSelect($c);
         if (!is_null($other_members)) {
             foreach ($other_members as $member) {
                 if (isset($uniquePersonsArray[$member->getUserId()])) {
                     // Do nothing, the user is already in the list
                 } else {
                     $persons[] = UserPeer::retrieveByPK($member->getUserId());
                     $uniquePersonsArray[$member->getUserId()] = 1;
                 }
             }
         }
     } else {
         if (!is_null($this->getCard())) {
             $persons[] = $this->getCard();
         }
     }
     return $persons;
 }