public static function doSelectJoinAllExceptRegTestPeriod(Criteria $c, $con = null) { $c = clone $c; if ($c->getDbName() == Propel::getDefaultDB()) { $c->setDbName(self::DATABASE_NAME); } VLocationPeer::addSelectColumns($c); $startcol2 = VLocationPeer::NUM_COLUMNS - VLocationPeer::NUM_LAZY_LOAD_COLUMNS + 1; LocationPeer::addSelectColumns($c); $startcol3 = $startcol2 + LocationPeer::NUM_COLUMNS; LocationCategoryPeer::addSelectColumns($c); $startcol4 = $startcol3 + LocationCategoryPeer::NUM_COLUMNS; DepartmentPeer::addSelectColumns($c); $startcol5 = $startcol4 + DepartmentPeer::NUM_COLUMNS; $c->addJoin(VLocationPeer::LOCATION_ID, LocationPeer::ID); $c->addJoin(VLocationPeer::LOCATION_CATEGORY_ID, LocationCategoryPeer::ID); $c->addJoin(VLocationPeer::DEPARTMENT_ID, DepartmentPeer::ID); $rs = BasePeer::doSelect($c, $con); $results = array(); while ($rs->next()) { $omClass = VLocationPeer::getOMClass(); $cls = Propel::import($omClass); $obj1 = new $cls(); $obj1->hydrate($rs); $omClass = LocationPeer::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->getLocation(); if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) { $newObject = false; $temp_obj2->addVLocation($obj1); break; } } if ($newObject) { $obj2->initVLocations(); $obj2->addVLocation($obj1); } $omClass = LocationCategoryPeer::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->getLocationCategory(); if ($temp_obj3->getPrimaryKey() === $obj3->getPrimaryKey()) { $newObject = false; $temp_obj3->addVLocation($obj1); break; } } if ($newObject) { $obj3->initVLocations(); $obj3->addVLocation($obj1); } $omClass = DepartmentPeer::getOMClass(); $cls = Propel::import($omClass); $obj4 = new $cls(); $obj4->hydrate($rs, $startcol4); $newObject = true; for ($j = 0, $resCount = count($results); $j < $resCount; $j++) { $temp_obj1 = $results[$j]; $temp_obj4 = $temp_obj1->getDepartment(); if ($temp_obj4->getPrimaryKey() === $obj4->getPrimaryKey()) { $newObject = false; $temp_obj4->addVLocation($obj1); break; } } if ($newObject) { $obj4->initVLocations(); $obj4->addVLocation($obj1); } $results[] = $obj1; } return $results; }
public function getVLocations($criteria = null, $con = null) { include_once 'lib/model/om/BaseVLocationPeer.php'; if ($criteria === null) { $criteria = new Criteria(); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } if ($this->collVLocations === null) { if ($this->isNew()) { $this->collVLocations = array(); } else { $criteria->add(VLocationPeer::LOCATION_ID, $this->getId()); VLocationPeer::addSelectColumns($criteria); $this->collVLocations = VLocationPeer::doSelect($criteria, $con); } } else { if (!$this->isNew()) { $criteria->add(VLocationPeer::LOCATION_ID, $this->getId()); VLocationPeer::addSelectColumns($criteria); if (!isset($this->lastVLocationCriteria) || !$this->lastVLocationCriteria->equals($criteria)) { $this->collVLocations = VLocationPeer::doSelect($criteria, $con); } } } $this->lastVLocationCriteria = $criteria; return $this->collVLocations; }