Ejemplo n.º 1
0
 public static function doSelectJoinAllExceptRegPeriod(Criteria $c, $con = null)
 {
     $c = clone $c;
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     TempApplicantPeer::addSelectColumns($c);
     $startcol2 = TempApplicantPeer::NUM_COLUMNS - TempApplicantPeer::NUM_LAZY_LOAD_COLUMNS + 1;
     TestApplicantPeer::addSelectColumns($c);
     $startcol3 = $startcol2 + TestApplicantPeer::NUM_COLUMNS;
     TestSchedulePeer::addSelectColumns($c);
     $startcol4 = $startcol3 + TestSchedulePeer::NUM_COLUMNS;
     $c->addJoin(TempApplicantPeer::TEST_APPLICANT_ID, TestApplicantPeer::ID);
     $c->addJoin(TempApplicantPeer::TEST_SCHEDULE_ID, TestSchedulePeer::ID);
     $rs = BasePeer::doSelect($c, $con);
     $results = array();
     while ($rs->next()) {
         $omClass = TempApplicantPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj1 = new $cls();
         $obj1->hydrate($rs);
         $omClass = TestApplicantPeer::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->getTestApplicant();
             if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj2->addTempApplicant($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj2->initTempApplicants();
             $obj2->addTempApplicant($obj1);
         }
         $omClass = TestSchedulePeer::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->getTestSchedule();
             if ($temp_obj3->getPrimaryKey() === $obj3->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj3->addTempApplicant($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj3->initTempApplicants();
             $obj3->addTempApplicant($obj1);
         }
         $results[] = $obj1;
     }
     return $results;
 }