public static function doSelectJoinAllExceptJobCategory(Criteria $c, $con = null) { $c = clone $c; if ($c->getDbName() == Propel::getDefaultDB()) { $c->setDbName(self::DATABASE_NAME); } JobInformationPeer::addSelectColumns($c); $startcol2 = JobInformationPeer::NUM_COLUMNS - JobInformationPeer::NUM_LAZY_LOAD_COLUMNS + 1; JobPeer::addSelectColumns($c); $startcol3 = $startcol2 + JobPeer::NUM_COLUMNS; PublicInformationPeer::addSelectColumns($c); $startcol4 = $startcol3 + PublicInformationPeer::NUM_COLUMNS; $c->addJoin(JobInformationPeer::JOB_ID, JobPeer::ID); $c->addJoin(JobInformationPeer::PUBLIC_INFORMATION_ID, PublicInformationPeer::ID); $rs = BasePeer::doSelect($c, $con); $results = array(); while ($rs->next()) { $omClass = JobInformationPeer::getOMClass(); $cls = Propel::import($omClass); $obj1 = new $cls(); $obj1->hydrate($rs); $omClass = JobPeer::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->getJob(); if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) { $newObject = false; $temp_obj2->addJobInformation($obj1); break; } } if ($newObject) { $obj2->initJobInformations(); $obj2->addJobInformation($obj1); } $omClass = PublicInformationPeer::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->getPublicInformation(); if ($temp_obj3->getPrimaryKey() === $obj3->getPrimaryKey()) { $newObject = false; $temp_obj3->addJobInformation($obj1); break; } } if ($newObject) { $obj3->initJobInformations(); $obj3->addJobInformation($obj1); } $results[] = $obj1; } return $results; }
public function getPublicInformations($criteria = null, $con = null) { include_once 'lib/model/om/BasePublicInformationPeer.php'; if ($criteria === null) { $criteria = new Criteria(); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } if ($this->collPublicInformations === null) { if ($this->isNew()) { $this->collPublicInformations = array(); } else { $criteria->add(PublicInformationPeer::PUBLIC_INFORMATION_CATEGORY_ID, $this->getId()); PublicInformationPeer::addSelectColumns($criteria); $this->collPublicInformations = PublicInformationPeer::doSelect($criteria, $con); } } else { if (!$this->isNew()) { $criteria->add(PublicInformationPeer::PUBLIC_INFORMATION_CATEGORY_ID, $this->getId()); PublicInformationPeer::addSelectColumns($criteria); if (!isset($this->lastPublicInformationCriteria) || !$this->lastPublicInformationCriteria->equals($criteria)) { $this->collPublicInformations = PublicInformationPeer::doSelect($criteria, $con); } } } $this->lastPublicInformationCriteria = $criteria; return $this->collPublicInformations; }