Esempio n. 1
0
 /**
  * Selects a collection of Material objects pre-filled with all related objects.
  *
  * @param      Criteria  $criteria
  * @param      PropelPDO $con
  * @param      String    $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN
  * @return     array Array of Material objects.
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function doSelectJoinAll(Criteria $criteria, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     $criteria = clone $criteria;
     // Set the correct dbName if it has not been overridden
     if ($criteria->getDbName() == Propel::getDefaultDB()) {
         $criteria->setDbName(self::DATABASE_NAME);
     }
     MaterialPeer::addSelectColumns($criteria);
     $startcol2 = MaterialPeer::NUM_COLUMNS - MaterialPeer::NUM_LAZY_LOAD_COLUMNS;
     MaterialgenericPeer::addSelectColumns($criteria);
     $startcol3 = $startcol2 + (MaterialgenericPeer::NUM_COLUMNS - MaterialgenericPeer::NUM_LAZY_LOAD_COLUMNS);
     $criteria->addJoin(MaterialPeer::MATERIALGENERIC_IDMATERIALGENERIC, MaterialgenericPeer::IDMATERIALGENERIC, $join_behavior);
     // symfony_behaviors behavior
     foreach (sfMixer::getCallables(self::getMixerPreSelectHook(__FUNCTION__)) as $sf_hook) {
         call_user_func($sf_hook, 'BaseMaterialPeer', $criteria, $con);
     }
     $stmt = BasePeer::doSelect($criteria, $con);
     $results = array();
     while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $key1 = MaterialPeer::getPrimaryKeyHashFromRow($row, 0);
         if (null !== ($obj1 = MaterialPeer::getInstanceFromPool($key1))) {
             // We no longer rehydrate the object, since this can cause data loss.
             // See http://propel.phpdb.org/trac/ticket/509
             // $obj1->hydrate($row, 0, true); // rehydrate
         } else {
             $cls = MaterialPeer::getOMClass(false);
             $obj1 = new $cls();
             $obj1->hydrate($row);
             MaterialPeer::addInstanceToPool($obj1, $key1);
         }
         // if obj1 already loaded
         // Add objects for joined Materialgeneric rows
         $key2 = MaterialgenericPeer::getPrimaryKeyHashFromRow($row, $startcol2);
         if ($key2 !== null) {
             $obj2 = MaterialgenericPeer::getInstanceFromPool($key2);
             if (!$obj2) {
                 $cls = MaterialgenericPeer::getOMClass(false);
                 $obj2 = new $cls();
                 $obj2->hydrate($row, $startcol2);
                 MaterialgenericPeer::addInstanceToPool($obj2, $key2);
             }
             // if obj2 loaded
             // Add the $obj1 (Material) to the collection in $obj2 (Materialgeneric)
             $obj2->addMaterial($obj1);
         }
         // if joined row not null
         $results[] = $obj1;
     }
     $stmt->closeCursor();
     return $results;
 }
Esempio n. 2
0
 /**
  * Selects a collection of Horarisespais objects pre-filled with all related objects except Horaris.
  *
  * @param      Criteria  $criteria
  * @param      PropelPDO $con
  * @param      String    $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN
  * @return     array Array of Horarisespais objects.
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function doSelectJoinAllExceptHoraris(Criteria $criteria, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     $criteria = clone $criteria;
     // Set the correct dbName if it has not been overridden
     // $criteria->getDbName() will return the same object if not set to another value
     // so == check is okay and faster
     if ($criteria->getDbName() == Propel::getDefaultDB()) {
         $criteria->setDbName(self::DATABASE_NAME);
     }
     HorarisespaisPeer::addSelectColumns($criteria);
     $startcol2 = HorarisespaisPeer::NUM_COLUMNS - HorarisespaisPeer::NUM_LAZY_LOAD_COLUMNS;
     MaterialPeer::addSelectColumns($criteria);
     $startcol3 = $startcol2 + (MaterialPeer::NUM_COLUMNS - MaterialPeer::NUM_LAZY_LOAD_COLUMNS);
     EspaisPeer::addSelectColumns($criteria);
     $startcol4 = $startcol3 + (EspaisPeer::NUM_COLUMNS - EspaisPeer::NUM_LAZY_LOAD_COLUMNS);
     EspaisExternsPeer::addSelectColumns($criteria);
     $startcol5 = $startcol4 + (EspaisExternsPeer::NUM_COLUMNS - EspaisExternsPeer::NUM_LAZY_LOAD_COLUMNS);
     $criteria->addJoin(HorarisespaisPeer::MATERIAL_IDMATERIAL, MaterialPeer::IDMATERIAL, $join_behavior);
     $criteria->addJoin(HorarisespaisPeer::ESPAIS_ESPAIID, EspaisPeer::ESPAIID, $join_behavior);
     $criteria->addJoin(HorarisespaisPeer::IDESPAIEXTERN, EspaisExternsPeer::IDESPAIEXTERN, $join_behavior);
     // symfony_behaviors behavior
     foreach (sfMixer::getCallables(self::getMixerPreSelectHook(__FUNCTION__)) as $sf_hook) {
         call_user_func($sf_hook, 'BaseHorarisespaisPeer', $criteria, $con);
     }
     $stmt = BasePeer::doSelect($criteria, $con);
     $results = array();
     while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $key1 = HorarisespaisPeer::getPrimaryKeyHashFromRow($row, 0);
         if (null !== ($obj1 = HorarisespaisPeer::getInstanceFromPool($key1))) {
             // We no longer rehydrate the object, since this can cause data loss.
             // See http://propel.phpdb.org/trac/ticket/509
             // $obj1->hydrate($row, 0, true); // rehydrate
         } else {
             $cls = HorarisespaisPeer::getOMClass(false);
             $obj1 = new $cls();
             $obj1->hydrate($row);
             HorarisespaisPeer::addInstanceToPool($obj1, $key1);
         }
         // if obj1 already loaded
         // Add objects for joined Material rows
         $key2 = MaterialPeer::getPrimaryKeyHashFromRow($row, $startcol2);
         if ($key2 !== null) {
             $obj2 = MaterialPeer::getInstanceFromPool($key2);
             if (!$obj2) {
                 $cls = MaterialPeer::getOMClass(false);
                 $obj2 = new $cls();
                 $obj2->hydrate($row, $startcol2);
                 MaterialPeer::addInstanceToPool($obj2, $key2);
             }
             // if $obj2 already loaded
             // Add the $obj1 (Horarisespais) to the collection in $obj2 (Material)
             $obj2->addHorarisespais($obj1);
         }
         // if joined row is not null
         // Add objects for joined Espais rows
         $key3 = EspaisPeer::getPrimaryKeyHashFromRow($row, $startcol3);
         if ($key3 !== null) {
             $obj3 = EspaisPeer::getInstanceFromPool($key3);
             if (!$obj3) {
                 $cls = EspaisPeer::getOMClass(false);
                 $obj3 = new $cls();
                 $obj3->hydrate($row, $startcol3);
                 EspaisPeer::addInstanceToPool($obj3, $key3);
             }
             // if $obj3 already loaded
             // Add the $obj1 (Horarisespais) to the collection in $obj3 (Espais)
             $obj3->addHorarisespais($obj1);
         }
         // if joined row is not null
         // Add objects for joined EspaisExterns rows
         $key4 = EspaisExternsPeer::getPrimaryKeyHashFromRow($row, $startcol4);
         if ($key4 !== null) {
             $obj4 = EspaisExternsPeer::getInstanceFromPool($key4);
             if (!$obj4) {
                 $cls = EspaisExternsPeer::getOMClass(false);
                 $obj4 = new $cls();
                 $obj4->hydrate($row, $startcol4);
                 EspaisExternsPeer::addInstanceToPool($obj4, $key4);
             }
             // if $obj4 already loaded
             // Add the $obj1 (Horarisespais) to the collection in $obj4 (EspaisExterns)
             $obj4->addHorarisespais($obj1);
         }
         // if joined row is not null
         $results[] = $obj1;
     }
     $stmt->closeCursor();
     return $results;
 }