Exemple #1
0
 public static function doSelectJoinAll(Criteria $c, $con = null)
 {
     $c = clone $c;
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     GuestPeer::addSelectColumns($c);
     $startcol2 = GuestPeer::NUM_COLUMNS - GuestPeer::NUM_LAZY_LOAD_COLUMNS + 1;
     EtimePeer::addSelectColumns($c);
     $startcol3 = $startcol2 + EtimePeer::NUM_COLUMNS;
     $c->addJoin(GuestPeer::ETIME_ID, EtimePeer::ID);
     $rs = BasePeer::doSelect($c, $con);
     $results = array();
     while ($rs->next()) {
         $omClass = GuestPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj1 = new $cls();
         $obj1->hydrate($rs);
         $omClass = EtimePeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj2 = new $cls();
         $obj2->hydrate($rs, $startcol2);
         $newObject = true;
         for ($j = 0, $resCount = count($results); $j < $resCount; $j++) {
             $temp_obj1 = $results[$j];
             $temp_obj2 = $temp_obj1->getEtime();
             if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj2->addGuest($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj2->initGuests();
             $obj2->addGuest($obj1);
         }
         $results[] = $obj1;
     }
     return $results;
 }
 public static function doSelectJoinAll(Criteria $c, $con = null)
 {
     $c = clone $c;
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     AdditionalGuestPeer::addSelectColumns($c);
     $startcol2 = AdditionalGuestPeer::NUM_COLUMNS - AdditionalGuestPeer::NUM_LAZY_LOAD_COLUMNS + 1;
     GuestPeer::addSelectColumns($c);
     $startcol3 = $startcol2 + GuestPeer::NUM_COLUMNS;
     GuestPeer::addSelectColumns($c);
     $startcol4 = $startcol3 + GuestPeer::NUM_COLUMNS;
     $c->addJoin(AdditionalGuestPeer::PARENT_GUEST_ID, GuestPeer::ID);
     $c->addJoin(AdditionalGuestPeer::CHILD_GUEST_ID, GuestPeer::ID);
     $rs = BasePeer::doSelect($c, $con);
     $results = array();
     while ($rs->next()) {
         $omClass = AdditionalGuestPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj1 = new $cls();
         $obj1->hydrate($rs);
         $omClass = GuestPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj2 = new $cls();
         $obj2->hydrate($rs, $startcol2);
         $newObject = true;
         for ($j = 0, $resCount = count($results); $j < $resCount; $j++) {
             $temp_obj1 = $results[$j];
             $temp_obj2 = $temp_obj1->getGuestRelatedByParentGuestId();
             if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj2->addAdditionalGuestRelatedByParentGuestId($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj2->initAdditionalGuestsRelatedByParentGuestId();
             $obj2->addAdditionalGuestRelatedByParentGuestId($obj1);
         }
         $omClass = GuestPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj3 = new $cls();
         $obj3->hydrate($rs, $startcol3);
         $newObject = true;
         for ($j = 0, $resCount = count($results); $j < $resCount; $j++) {
             $temp_obj1 = $results[$j];
             $temp_obj3 = $temp_obj1->getGuestRelatedByChildGuestId();
             if ($temp_obj3->getPrimaryKey() === $obj3->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj3->addAdditionalGuestRelatedByChildGuestId($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj3->initAdditionalGuestsRelatedByChildGuestId();
             $obj3->addAdditionalGuestRelatedByChildGuestId($obj1);
         }
         $results[] = $obj1;
     }
     return $results;
 }