Esempio n. 1
0
 public function getCoFormApplications($criteria = null, $con = null)
 {
     include_once 'lib/model/om/BaseCoFormApplicationPeer.php';
     if ($criteria === null) {
         $criteria = new Criteria();
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collCoFormApplications === null) {
         if ($this->isNew()) {
             $this->collCoFormApplications = array();
         } else {
             $criteria->add(CoFormApplicationPeer::POSITION_ID, $this->getId());
             CoFormApplicationPeer::addSelectColumns($criteria);
             $this->collCoFormApplications = CoFormApplicationPeer::doSelect($criteria, $con);
         }
     } else {
         if (!$this->isNew()) {
             $criteria->add(CoFormApplicationPeer::POSITION_ID, $this->getId());
             CoFormApplicationPeer::addSelectColumns($criteria);
             if (!isset($this->lastCoFormApplicationCriteria) || !$this->lastCoFormApplicationCriteria->equals($criteria)) {
                 $this->collCoFormApplications = CoFormApplicationPeer::doSelect($criteria, $con);
             }
         }
     }
     $this->lastCoFormApplicationCriteria = $criteria;
     return $this->collCoFormApplications;
 }
 public static function doSelectJoinAllExceptProjectPosition(Criteria $c, $con = null)
 {
     foreach (sfMixer::getCallables('BaseCoFormApplicationPeer:doSelectJoinAllExcept:doSelectJoinAllExcept') as $callable) {
         call_user_func($callable, 'BaseCoFormApplicationPeer', $c, $con);
     }
     $c = clone $c;
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     CoFormApplicationPeer::addSelectColumns($c);
     $startcol2 = CoFormApplicationPeer::NUM_COLUMNS - CoFormApplicationPeer::NUM_LAZY_LOAD_COLUMNS + 1;
     CoFormPeer::addSelectColumns($c);
     $startcol3 = $startcol2 + CoFormPeer::NUM_COLUMNS;
     $c->addJoin(CoFormApplicationPeer::FORM_ID, CoFormPeer::ID);
     $rs = BasePeer::doSelect($c, $con);
     $results = array();
     while ($rs->next()) {
         $omClass = CoFormApplicationPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj1 = new $cls();
         $obj1->hydrate($rs);
         $omClass = CoFormPeer::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->getCoForm();
             if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj2->addCoFormApplication($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj2->initCoFormApplications();
             $obj2->addCoFormApplication($obj1);
         }
         $results[] = $obj1;
     }
     return $results;
 }