public static function doSelectJoinAllExceptAcademicCalendar(Criteria $c, $con = null)
 {
     $c = clone $c;
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     StudentMedicalPeer::addSelectColumns($c);
     $startcol2 = StudentMedicalPeer::NUM_COLUMNS - StudentMedicalPeer::NUM_LAZY_LOAD_COLUMNS + 1;
     StudentPeer::addSelectColumns($c);
     $startcol3 = $startcol2 + StudentPeer::NUM_COLUMNS;
     IllnessPeer::addSelectColumns($c);
     $startcol4 = $startcol3 + IllnessPeer::NUM_COLUMNS;
     ClassGroupPeer::addSelectColumns($c);
     $startcol5 = $startcol4 + ClassGroupPeer::NUM_COLUMNS;
     $c->addJoin(StudentMedicalPeer::STUDENT_ID, StudentPeer::ID);
     $c->addJoin(StudentMedicalPeer::ILLNESS_ID, IllnessPeer::ID);
     $c->addJoin(StudentMedicalPeer::CLASS_GROUP_ID, ClassGroupPeer::ID);
     $rs = BasePeer::doSelect($c, $con);
     $results = array();
     while ($rs->next()) {
         $omClass = StudentMedicalPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj1 = new $cls();
         $obj1->hydrate($rs);
         $omClass = StudentPeer::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->getStudent();
             if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj2->addStudentMedical($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj2->initStudentMedicals();
             $obj2->addStudentMedical($obj1);
         }
         $omClass = IllnessPeer::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->getIllness();
             if ($temp_obj3->getPrimaryKey() === $obj3->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj3->addStudentMedical($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj3->initStudentMedicals();
             $obj3->addStudentMedical($obj1);
         }
         $omClass = ClassGroupPeer::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->getClassGroup();
             if ($temp_obj4->getPrimaryKey() === $obj4->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj4->addStudentMedical($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj4->initStudentMedicals();
             $obj4->addStudentMedical($obj1);
         }
         $results[] = $obj1;
     }
     return $results;
 }
Example #2
0
 public static function retrieveByPKs($pks, $con = null)
 {
     if ($con === null) {
         $con = Propel::getConnection(self::DATABASE_NAME);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria();
         $criteria->add(IllnessPeer::ID, $pks, Criteria::IN);
         $objs = IllnessPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
Example #3
0
 public function getIllness($con = null)
 {
     include_once 'lib/model/om/BaseIllnessPeer.php';
     if ($this->aIllness === null && $this->illness_id !== null) {
         $this->aIllness = IllnessPeer::retrieveByPK($this->illness_id, $con);
     }
     return $this->aIllness;
 }
 public static function doSelectJoinAllExceptEmployeeLevel(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;
     IllnessPeer::addSelectColumns($c);
     $startcol7 = $startcol6 + IllnessPeer::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::ILLNESS_ID, IllnessPeer::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 = IllnessPeer::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->getIllness();
             if ($temp_obj6->getPrimaryKey() === $obj6->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj6->addEmployeeMedical($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj6->initEmployeeMedicals();
             $obj6->addEmployeeMedical($obj1);
         }
         $results[] = $obj1;
     }
     return $results;
 }
Example #5
0
 public function executeDelete()
 {
     $illness = IllnessPeer::retrieveByPk($this->getRequestParameter('id'));
     $this->forward404Unless($illness);
     $ref_error = 0;
     foreach ($illness->getRefCountMethods() as $ref) {
         $method = "count" . $ref['affix'];
         $count = $illness->{$method}();
         if ($count > 0) {
             ++$ref_error;
             $this->getRequest()->setError('illness/delete/' . sfInflector::camelize($ref['table']), $count);
         }
     }
     if ($ref_error > 0) {
         $this->getRequest()->setError('illness/delete', '_ERR_DELETE_ (' . $illness->toString() . ' - id:' . $illness->getId() . ')');
     } else {
         $illness->delete();
     }
     return $this->forward('illness', 'list');
 }
Example #6
0
 public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME)
 {
     $keys = IllnessPeer::getFieldNames($keyType);
     if (array_key_exists($keys[0], $arr)) {
         $this->setId($arr[$keys[0]]);
     }
     if (array_key_exists($keys[1], $arr)) {
         $this->setCode($arr[$keys[1]]);
     }
     if (array_key_exists($keys[2], $arr)) {
         $this->setDescription($arr[$keys[2]]);
     }
 }