コード例 #1
0
 /**
  * If this collection has already been initialized with
  * an identical criteria, it returns the collection.
  * Otherwise if this BpmnProject has previously
  * been saved, it will retrieve related BpmnLanesets from storage.
  * If this BpmnProject is new, it will return
  * an empty collection or the current collection, the criteria
  * is ignored on a new object.
  *
  * @param      Connection $con
  * @param      Criteria $criteria
  * @throws     PropelException
  */
 public function getBpmnLanesets($criteria = null, $con = null)
 {
     // include the Peer class
     include_once 'classes/model/om/BaseBpmnLanesetPeer.php';
     if ($criteria === null) {
         $criteria = new Criteria();
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collBpmnLanesets === null) {
         if ($this->isNew()) {
             $this->collBpmnLanesets = array();
         } else {
             $criteria->add(BpmnLanesetPeer::PRJ_UID, $this->getPrjUid());
             BpmnLanesetPeer::addSelectColumns($criteria);
             $this->collBpmnLanesets = BpmnLanesetPeer::doSelect($criteria, $con);
         }
     } else {
         // criteria has no effect for a new object
         if (!$this->isNew()) {
             // the following code is to determine if a new query is
             // called for.  If the criteria is the same as the last
             // one, just return the collection.
             $criteria->add(BpmnLanesetPeer::PRJ_UID, $this->getPrjUid());
             BpmnLanesetPeer::addSelectColumns($criteria);
             if (!isset($this->lastBpmnLanesetCriteria) || !$this->lastBpmnLanesetCriteria->equals($criteria)) {
                 $this->collBpmnLanesets = BpmnLanesetPeer::doSelect($criteria, $con);
             }
         }
     }
     $this->lastBpmnLanesetCriteria = $criteria;
     return $this->collBpmnLanesets;
 }
コード例 #2
0
 /**
  * Selects a collection of BpmnLaneset objects pre-filled with all related objects except BpmnProcess.
  *
  * @return     array Array of BpmnLaneset objects.
  * @throws     PropelException Any exceptions caught during processing will be
  *       rethrown wrapped into a PropelException.
  */
 public static function doSelectJoinAllExceptBpmnProcess(Criteria $c, $con = null)
 {
     $c = clone $c;
     // Set the correct dbName if it has not been overridden
     // $c->getDbName() will return the same object if not set to another value
     // so == check is okay and faster
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     BpmnLanesetPeer::addSelectColumns($c);
     $startcol2 = BpmnLanesetPeer::NUM_COLUMNS - BpmnLanesetPeer::NUM_LAZY_LOAD_COLUMNS + 1;
     BpmnProjectPeer::addSelectColumns($c);
     $startcol3 = $startcol2 + BpmnProjectPeer::NUM_COLUMNS;
     $c->addJoin(BpmnLanesetPeer::PRJ_UID, BpmnProjectPeer::PRJ_UID);
     $rs = BasePeer::doSelect($c, $con);
     $results = array();
     while ($rs->next()) {
         $omClass = BpmnLanesetPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj1 = new $cls();
         $obj1->hydrate($rs);
         $omClass = BpmnProjectPeer::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->getBpmnProject();
             //CHECKME
             if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj2->addBpmnLaneset($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj2->initBpmnLanesets();
             $obj2->addBpmnLaneset($obj1);
         }
         $results[] = $obj1;
     }
     return $results;
 }