public static function populateObjects(ResultSet $rs) { $results = array(); $cls = FunctionalJobPeer::getOMClass(); $cls = Propel::import($cls); while ($rs->next()) { $obj = new $cls(); $obj->hydrate($rs); $results[] = $obj; } return $results; }
public static function doSelectJoinAllExceptEmployeeLevel(Criteria $c, $con = null) { $c = clone $c; if ($c->getDbName() == Propel::getDefaultDB()) { $c->setDbName(self::DATABASE_NAME); } EmployeeJobHistoryPeer::addSelectColumns($c); $startcol2 = EmployeeJobHistoryPeer::NUM_COLUMNS - EmployeeJobHistoryPeer::NUM_LAZY_LOAD_COLUMNS + 1; EmployeePeer::addSelectColumns($c); $startcol3 = $startcol2 + EmployeePeer::NUM_COLUMNS; StaffTypePeer::addSelectColumns($c); $startcol4 = $startcol3 + StaffTypePeer::NUM_COLUMNS; StructuralJobPeer::addSelectColumns($c); $startcol5 = $startcol4 + StructuralJobPeer::NUM_COLUMNS; FunctionalJobPeer::addSelectColumns($c); $startcol6 = $startcol5 + FunctionalJobPeer::NUM_COLUMNS; DepartmentPeer::addSelectColumns($c); $startcol7 = $startcol6 + DepartmentPeer::NUM_COLUMNS; $c->addJoin(EmployeeJobHistoryPeer::EMPLOYEE_ID, EmployeePeer::ID); $c->addJoin(EmployeeJobHistoryPeer::STAFF_TYPE_ID, StaffTypePeer::ID); $c->addJoin(EmployeeJobHistoryPeer::STRUCTURAL_JOB_ID, StructuralJobPeer::ID); $c->addJoin(EmployeeJobHistoryPeer::FUNCTIONAL_JOB_ID, FunctionalJobPeer::ID); $c->addJoin(EmployeeJobHistoryPeer::DEPARTMENT_ID, DepartmentPeer::ID); $rs = BasePeer::doSelect($c, $con); $results = array(); while ($rs->next()) { $omClass = EmployeeJobHistoryPeer::getOMClass(); $cls = Propel::import($omClass); $obj1 = new $cls(); $obj1->hydrate($rs); $omClass = EmployeePeer::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->getEmployee(); if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) { $newObject = false; $temp_obj2->addEmployeeJobHistory($obj1); break; } } if ($newObject) { $obj2->initEmployeeJobHistorys(); $obj2->addEmployeeJobHistory($obj1); } $omClass = StaffTypePeer::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->getStaffType(); if ($temp_obj3->getPrimaryKey() === $obj3->getPrimaryKey()) { $newObject = false; $temp_obj3->addEmployeeJobHistory($obj1); break; } } if ($newObject) { $obj3->initEmployeeJobHistorys(); $obj3->addEmployeeJobHistory($obj1); } $omClass = StructuralJobPeer::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->getStructuralJob(); if ($temp_obj4->getPrimaryKey() === $obj4->getPrimaryKey()) { $newObject = false; $temp_obj4->addEmployeeJobHistory($obj1); break; } } if ($newObject) { $obj4->initEmployeeJobHistorys(); $obj4->addEmployeeJobHistory($obj1); } $omClass = FunctionalJobPeer::getOMClass(); $cls = Propel::import($omClass); $obj5 = new $cls(); $obj5->hydrate($rs, $startcol5); $newObject = true; for ($j = 0, $resCount = count($results); $j < $resCount; $j++) { $temp_obj1 = $results[$j]; $temp_obj5 = $temp_obj1->getFunctionalJob(); if ($temp_obj5->getPrimaryKey() === $obj5->getPrimaryKey()) { $newObject = false; $temp_obj5->addEmployeeJobHistory($obj1); break; } } if ($newObject) { $obj5->initEmployeeJobHistorys(); $obj5->addEmployeeJobHistory($obj1); } $omClass = DepartmentPeer::getOMClass(); $cls = Propel::import($omClass); $obj6 = new $cls(); $obj6->hydrate($rs, $startcol6); $newObject = true; for ($j = 0, $resCount = count($results); $j < $resCount; $j++) { $temp_obj1 = $results[$j]; $temp_obj6 = $temp_obj1->getDepartment(); if ($temp_obj6->getPrimaryKey() === $obj6->getPrimaryKey()) { $newObject = false; $temp_obj6->addEmployeeJobHistory($obj1); break; } } if ($newObject) { $obj6->initEmployeeJobHistorys(); $obj6->addEmployeeJobHistory($obj1); } $results[] = $obj1; } return $results; }