예제 #1
0
 public function getSubdepartments($criteria = null, $con = null)
 {
     include_once 'lib/model/om/BaseSubdepartmentPeer.php';
     if ($criteria === null) {
         $criteria = new Criteria();
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collSubdepartments === null) {
         if ($this->isNew()) {
             $this->collSubdepartments = array();
         } else {
             $criteria->add(SubdepartmentPeer::DEPARTMENT_ID, $this->getId());
             SubdepartmentPeer::addSelectColumns($criteria);
             $this->collSubdepartments = SubdepartmentPeer::doSelect($criteria, $con);
         }
     } else {
         if (!$this->isNew()) {
             $criteria->add(SubdepartmentPeer::DEPARTMENT_ID, $this->getId());
             SubdepartmentPeer::addSelectColumns($criteria);
             if (!isset($this->lastSubdepartmentCriteria) || !$this->lastSubdepartmentCriteria->equals($criteria)) {
                 $this->collSubdepartments = SubdepartmentPeer::doSelect($criteria, $con);
             }
         }
     }
     $this->lastSubdepartmentCriteria = $criteria;
     return $this->collSubdepartments;
 }
예제 #2
0
 public static function doSelectJoinAll(Criteria $c, $con = null)
 {
     foreach (sfMixer::getCallables('BaseSubdepartmentPeer:doSelectJoinAll:doSelectJoinAll') as $callable) {
         call_user_func($callable, 'BaseSubdepartmentPeer', $c, $con);
     }
     $c = clone $c;
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     SubdepartmentPeer::addSelectColumns($c);
     $startcol2 = SubdepartmentPeer::NUM_COLUMNS - SubdepartmentPeer::NUM_LAZY_LOAD_COLUMNS + 1;
     DepartmentPeer::addSelectColumns($c);
     $startcol3 = $startcol2 + DepartmentPeer::NUM_COLUMNS;
     $c->addJoin(SubdepartmentPeer::DEPARTMENT_ID, DepartmentPeer::ID);
     $rs = BasePeer::doSelect($c, $con);
     $results = array();
     while ($rs->next()) {
         $omClass = SubdepartmentPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj1 = new $cls();
         $obj1->hydrate($rs);
         $omClass = DepartmentPeer::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->getDepartment();
             if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj2->addSubdepartment($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj2->initSubdepartments();
             $obj2->addSubdepartment($obj1);
         }
         $results[] = $obj1;
     }
     return $results;
 }
 public static function doSelectJoinAllExceptDepartment(Criteria $c, $con = null)
 {
     foreach (sfMixer::getCallables('BasesfGuardUserProfilePeer:doSelectJoinAllExcept:doSelectJoinAllExcept') as $callable) {
         call_user_func($callable, 'BasesfGuardUserProfilePeer', $c, $con);
     }
     $c = clone $c;
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     sfGuardUserProfilePeer::addSelectColumns($c);
     $startcol2 = sfGuardUserProfilePeer::NUM_COLUMNS - sfGuardUserProfilePeer::NUM_LAZY_LOAD_COLUMNS + 1;
     sfGuardUserPeer::addSelectColumns($c);
     $startcol3 = $startcol2 + sfGuardUserPeer::NUM_COLUMNS;
     CampusPeer::addSelectColumns($c);
     $startcol4 = $startcol3 + CampusPeer::NUM_COLUMNS;
     SubdepartmentPeer::addSelectColumns($c);
     $startcol5 = $startcol4 + SubdepartmentPeer::NUM_COLUMNS;
     $c->addJoin(sfGuardUserProfilePeer::USER_ID, sfGuardUserPeer::ID);
     $c->addJoin(sfGuardUserProfilePeer::CAMPUS_ID, CampusPeer::ID);
     $c->addJoin(sfGuardUserProfilePeer::SUBDEPARTMENT_ID, SubdepartmentPeer::ID);
     $rs = BasePeer::doSelect($c, $con);
     $results = array();
     while ($rs->next()) {
         $omClass = sfGuardUserProfilePeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj1 = new $cls();
         $obj1->hydrate($rs);
         $omClass = sfGuardUserPeer::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->getsfGuardUser();
             if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj2->addsfGuardUserProfile($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj2->initsfGuardUserProfiles();
             $obj2->addsfGuardUserProfile($obj1);
         }
         $omClass = CampusPeer::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->getCampus();
             if ($temp_obj3->getPrimaryKey() === $obj3->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj3->addsfGuardUserProfile($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj3->initsfGuardUserProfiles();
             $obj3->addsfGuardUserProfile($obj1);
         }
         $omClass = SubdepartmentPeer::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->getSubdepartment();
             if ($temp_obj4->getPrimaryKey() === $obj4->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj4->addsfGuardUserProfile($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj4->initsfGuardUserProfiles();
             $obj4->addsfGuardUserProfile($obj1);
         }
         $results[] = $obj1;
     }
     return $results;
 }