コード例 #1
0
ファイル: BaseAcademicCost.php プロジェクト: taryono/school
 public function getVStudentInfaqs($criteria = null, $con = null)
 {
     include_once 'lib/model/om/BaseVStudentInfaqPeer.php';
     if ($criteria === null) {
         $criteria = new Criteria();
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collVStudentInfaqs === null) {
         if ($this->isNew()) {
             $this->collVStudentInfaqs = array();
         } else {
             $criteria->add(VStudentInfaqPeer::ACADEMIC_COST_ID, $this->getId());
             VStudentInfaqPeer::addSelectColumns($criteria);
             $this->collVStudentInfaqs = VStudentInfaqPeer::doSelect($criteria, $con);
         }
     } else {
         if (!$this->isNew()) {
             $criteria->add(VStudentInfaqPeer::ACADEMIC_COST_ID, $this->getId());
             VStudentInfaqPeer::addSelectColumns($criteria);
             if (!isset($this->lastVStudentInfaqCriteria) || !$this->lastVStudentInfaqCriteria->equals($criteria)) {
                 $this->collVStudentInfaqs = VStudentInfaqPeer::doSelect($criteria, $con);
             }
         }
     }
     $this->lastVStudentInfaqCriteria = $criteria;
     return $this->collVStudentInfaqs;
 }
コード例 #2
0
 public static function doSelectJoinAllExceptPaymentModel(Criteria $c, $con = null)
 {
     $c = clone $c;
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     VStudentInfaqPeer::addSelectColumns($c);
     $startcol2 = VStudentInfaqPeer::NUM_COLUMNS - VStudentInfaqPeer::NUM_LAZY_LOAD_COLUMNS + 1;
     AcademicCalendarPeer::addSelectColumns($c);
     $startcol3 = $startcol2 + AcademicCalendarPeer::NUM_COLUMNS;
     ClassGroupPeer::addSelectColumns($c);
     $startcol4 = $startcol3 + ClassGroupPeer::NUM_COLUMNS;
     AcademicCostPeer::addSelectColumns($c);
     $startcol5 = $startcol4 + AcademicCostPeer::NUM_COLUMNS;
     AcademicCostComponentPeer::addSelectColumns($c);
     $startcol6 = $startcol5 + AcademicCostComponentPeer::NUM_COLUMNS;
     $c->addJoin(VStudentInfaqPeer::ACADEMIC_CALENDAR_ID, AcademicCalendarPeer::ID);
     $c->addJoin(VStudentInfaqPeer::CLASS_GROUP_ID, ClassGroupPeer::ID);
     $c->addJoin(VStudentInfaqPeer::ACADEMIC_COST_ID, AcademicCostPeer::ID);
     $c->addJoin(VStudentInfaqPeer::ACADEMIC_COST_COMPONENT_ID, AcademicCostComponentPeer::ID);
     $rs = BasePeer::doSelect($c, $con);
     $results = array();
     while ($rs->next()) {
         $omClass = VStudentInfaqPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj1 = new $cls();
         $obj1->hydrate($rs);
         $omClass = AcademicCalendarPeer::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->getAcademicCalendar();
             if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj2->addVStudentInfaq($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj2->initVStudentInfaqs();
             $obj2->addVStudentInfaq($obj1);
         }
         $omClass = ClassGroupPeer::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->getClassGroup();
             if ($temp_obj3->getPrimaryKey() === $obj3->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj3->addVStudentInfaq($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj3->initVStudentInfaqs();
             $obj3->addVStudentInfaq($obj1);
         }
         $omClass = AcademicCostPeer::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->getAcademicCost();
             if ($temp_obj4->getPrimaryKey() === $obj4->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj4->addVStudentInfaq($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj4->initVStudentInfaqs();
             $obj4->addVStudentInfaq($obj1);
         }
         $omClass = AcademicCostComponentPeer::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->getAcademicCostComponent();
             if ($temp_obj5->getPrimaryKey() === $obj5->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj5->addVStudentInfaq($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj5->initVStudentInfaqs();
             $obj5->addVStudentInfaq($obj1);
         }
         $results[] = $obj1;
     }
     return $results;
 }