public static function doSelectJoinAllExceptUserGroup(Criteria $c, $con = null) { $c = clone $c; if ($c->getDbName() == Propel::getDefaultDB()) { $c->setDbName(self::DATABASE_NAME); } StaffTypePeer::addSelectColumns($c); $startcol2 = StaffTypePeer::NUM_COLUMNS - StaffTypePeer::NUM_LAZY_LOAD_COLUMNS + 1; JobTemplatePeer::addSelectColumns($c); $startcol3 = $startcol2 + JobTemplatePeer::NUM_COLUMNS; $c->addJoin(StaffTypePeer::JOB_TEMPLATE_ID, JobTemplatePeer::ID); $rs = BasePeer::doSelect($c, $con); $results = array(); while ($rs->next()) { $omClass = StaffTypePeer::getOMClass(); $cls = Propel::import($omClass); $obj1 = new $cls(); $obj1->hydrate($rs); $omClass = JobTemplatePeer::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->getJobTemplate(); if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) { $newObject = false; $temp_obj2->addStaffType($obj1); break; } } if ($newObject) { $obj2->initStaffTypes(); $obj2->addStaffType($obj1); } $results[] = $obj1; } return $results; }
public function getStaffTypes($criteria = null, $con = null) { include_once 'lib/model/om/BaseStaffTypePeer.php'; if ($criteria === null) { $criteria = new Criteria(); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } if ($this->collStaffTypes === null) { if ($this->isNew()) { $this->collStaffTypes = array(); } else { $criteria->add(StaffTypePeer::JOB_TEMPLATE_ID, $this->getId()); StaffTypePeer::addSelectColumns($criteria); $this->collStaffTypes = StaffTypePeer::doSelect($criteria, $con); } } else { if (!$this->isNew()) { $criteria->add(StaffTypePeer::JOB_TEMPLATE_ID, $this->getId()); StaffTypePeer::addSelectColumns($criteria); if (!isset($this->lastStaffTypeCriteria) || !$this->lastStaffTypeCriteria->equals($criteria)) { $this->collStaffTypes = StaffTypePeer::doSelect($criteria, $con); } } } $this->lastStaffTypeCriteria = $criteria; return $this->collStaffTypes; }
public static function doSelectJoinAllExceptIllness(Criteria $c, $con = null) { $c = clone $c; if ($c->getDbName() == Propel::getDefaultDB()) { $c->setDbName(self::DATABASE_NAME); } EmployeeMedicalPeer::addSelectColumns($c); $startcol2 = EmployeeMedicalPeer::NUM_COLUMNS - EmployeeMedicalPeer::NUM_LAZY_LOAD_COLUMNS + 1; EmployeePeer::addSelectColumns($c); $startcol3 = $startcol2 + EmployeePeer::NUM_COLUMNS; DepartmentPeer::addSelectColumns($c); $startcol4 = $startcol3 + DepartmentPeer::NUM_COLUMNS; AcademicCalendarPeer::addSelectColumns($c); $startcol5 = $startcol4 + AcademicCalendarPeer::NUM_COLUMNS; StaffTypePeer::addSelectColumns($c); $startcol6 = $startcol5 + StaffTypePeer::NUM_COLUMNS; EmployeeLevelPeer::addSelectColumns($c); $startcol7 = $startcol6 + EmployeeLevelPeer::NUM_COLUMNS; $c->addJoin(EmployeeMedicalPeer::EMPLOYEE_ID, EmployeePeer::ID); $c->addJoin(EmployeeMedicalPeer::DEPARTMENT_ID, DepartmentPeer::ID); $c->addJoin(EmployeeMedicalPeer::ACADEMIC_CALENDAR_ID, AcademicCalendarPeer::ID); $c->addJoin(EmployeeMedicalPeer::STAFF_TYPE_ID, StaffTypePeer::ID); $c->addJoin(EmployeeMedicalPeer::EMPLOYEE_LEVEL_ID, EmployeeLevelPeer::ID); $rs = BasePeer::doSelect($c, $con); $results = array(); while ($rs->next()) { $omClass = EmployeeMedicalPeer::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->addEmployeeMedical($obj1); break; } } if ($newObject) { $obj2->initEmployeeMedicals(); $obj2->addEmployeeMedical($obj1); } $omClass = DepartmentPeer::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->getDepartment(); if ($temp_obj3->getPrimaryKey() === $obj3->getPrimaryKey()) { $newObject = false; $temp_obj3->addEmployeeMedical($obj1); break; } } if ($newObject) { $obj3->initEmployeeMedicals(); $obj3->addEmployeeMedical($obj1); } $omClass = AcademicCalendarPeer::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->getAcademicCalendar(); if ($temp_obj4->getPrimaryKey() === $obj4->getPrimaryKey()) { $newObject = false; $temp_obj4->addEmployeeMedical($obj1); break; } } if ($newObject) { $obj4->initEmployeeMedicals(); $obj4->addEmployeeMedical($obj1); } $omClass = StaffTypePeer::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->getStaffType(); if ($temp_obj5->getPrimaryKey() === $obj5->getPrimaryKey()) { $newObject = false; $temp_obj5->addEmployeeMedical($obj1); break; } } if ($newObject) { $obj5->initEmployeeMedicals(); $obj5->addEmployeeMedical($obj1); } $omClass = EmployeeLevelPeer::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->getEmployeeLevel(); if ($temp_obj6->getPrimaryKey() === $obj6->getPrimaryKey()) { $newObject = false; $temp_obj6->addEmployeeMedical($obj1); break; } } if ($newObject) { $obj6->initEmployeeMedicals(); $obj6->addEmployeeMedical($obj1); } $results[] = $obj1; } return $results; }
public static function doSelectJoinAllExceptStudent(Criteria $c, $con = null) { $c = clone $c; if ($c->getDbName() == Propel::getDefaultDB()) { $c->setDbName(self::DATABASE_NAME); } MemberPeer::addSelectColumns($c); $startcol2 = MemberPeer::NUM_COLUMNS - MemberPeer::NUM_LAZY_LOAD_COLUMNS + 1; MemberDetailPeer::addSelectColumns($c); $startcol3 = $startcol2 + MemberDetailPeer::NUM_COLUMNS; DepartmentPeer::addSelectColumns($c); $startcol4 = $startcol3 + DepartmentPeer::NUM_COLUMNS; StaffTypePeer::addSelectColumns($c); $startcol5 = $startcol4 + StaffTypePeer::NUM_COLUMNS; EmployeeDetailPeer::addSelectColumns($c); $startcol6 = $startcol5 + EmployeeDetailPeer::NUM_COLUMNS; $c->addJoin(MemberPeer::MEMBER_DETAIL_ID, MemberDetailPeer::ID); $c->addJoin(MemberPeer::DEPARTMENT_ID, DepartmentPeer::ID); $c->addJoin(MemberPeer::STAFF_TYPE_ID, StaffTypePeer::ID); $c->addJoin(MemberPeer::EMPLOYEE_DETAIL_ID, EmployeeDetailPeer::ID); $rs = BasePeer::doSelect($c, $con); $results = array(); while ($rs->next()) { $omClass = MemberPeer::getOMClass(); $cls = Propel::import($omClass); $obj1 = new $cls(); $obj1->hydrate($rs); $omClass = MemberDetailPeer::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->getMemberDetail(); if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) { $newObject = false; $temp_obj2->addMember($obj1); break; } } if ($newObject) { $obj2->initMembers(); $obj2->addMember($obj1); } $omClass = DepartmentPeer::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->getDepartment(); if ($temp_obj3->getPrimaryKey() === $obj3->getPrimaryKey()) { $newObject = false; $temp_obj3->addMember($obj1); break; } } if ($newObject) { $obj3->initMembers(); $obj3->addMember($obj1); } $omClass = StaffTypePeer::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->getStaffType(); if ($temp_obj4->getPrimaryKey() === $obj4->getPrimaryKey()) { $newObject = false; $temp_obj4->addMember($obj1); break; } } if ($newObject) { $obj4->initMembers(); $obj4->addMember($obj1); } $omClass = EmployeeDetailPeer::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->getEmployeeDetail(); if ($temp_obj5->getPrimaryKey() === $obj5->getPrimaryKey()) { $newObject = false; $temp_obj5->addMember($obj1); break; } } if ($newObject) { $obj5->initMembers(); $obj5->addMember($obj1); } $results[] = $obj1; } 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; }