public static function doSelectJoinAllExceptAcademicCalendar(Criteria $c, $con = null) { $c = clone $c; if ($c->getDbName() == Propel::getDefaultDB()) { $c->setDbName(self::DATABASE_NAME); } AccalPeriodPeer::addSelectColumns($c); $startcol2 = AccalPeriodPeer::NUM_COLUMNS - AccalPeriodPeer::NUM_LAZY_LOAD_COLUMNS + 1; MonthPeer::addSelectColumns($c); $startcol3 = $startcol2 + MonthPeer::NUM_COLUMNS; $c->addJoin(AccalPeriodPeer::MONTH_ID, MonthPeer::ID); $rs = BasePeer::doSelect($c, $con); $results = array(); while ($rs->next()) { $omClass = AccalPeriodPeer::getOMClass(); $cls = Propel::import($omClass); $obj1 = new $cls(); $obj1->hydrate($rs); $omClass = MonthPeer::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->getMonth(); if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) { $newObject = false; $temp_obj2->addAccalPeriod($obj1); break; } } if ($newObject) { $obj2->initAccalPeriods(); $obj2->addAccalPeriod($obj1); } $results[] = $obj1; } return $results; }
public static function populateObjects(ResultSet $rs) { $results = array(); $cls = MonthPeer::getOMClass(); $cls = Propel::import($cls); while ($rs->next()) { $obj = new $cls(); $obj->hydrate($rs); $results[] = $obj; } return $results; }