Пример #1
0
 /**
  * Selects a collection of BpmnData objects pre-filled with all related objects except BpmnProject.
  *
  * @return     array Array of BpmnData objects.
  * @throws     PropelException Any exceptions caught during processing will be
  *       rethrown wrapped into a PropelException.
  */
 public static function doSelectJoinAllExceptBpmnProject(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);
     }
     BpmnDataPeer::addSelectColumns($c);
     $startcol2 = BpmnDataPeer::NUM_COLUMNS - BpmnDataPeer::NUM_LAZY_LOAD_COLUMNS + 1;
     BpmnProcessPeer::addSelectColumns($c);
     $startcol3 = $startcol2 + BpmnProcessPeer::NUM_COLUMNS;
     $c->addJoin(BpmnDataPeer::PRO_UID, BpmnProcessPeer::PRO_UID);
     $rs = BasePeer::doSelect($c, $con);
     $results = array();
     while ($rs->next()) {
         $omClass = BpmnDataPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj1 = new $cls();
         $obj1->hydrate($rs);
         $omClass = BpmnProcessPeer::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->getBpmnProcess();
             //CHECKME
             if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj2->addBpmnData($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj2->initBpmnDatas();
             $obj2->addBpmnData($obj1);
         }
         $results[] = $obj1;
     }
     return $results;
 }