Esempio n. 1
0
 /**
  * Selects a collection of Turno 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 Turno 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(TurnoPeer::DATABASE_NAME);
     }
     TurnoPeer::addSelectColumns($criteria);
     $startcol2 = TurnoPeer::NUM_HYDRATE_COLUMNS;
     JugadorMesaPeer::addSelectColumns($criteria);
     $startcol3 = $startcol2 + JugadorMesaPeer::NUM_HYDRATE_COLUMNS;
     $criteria->addJoin(TurnoPeer::JUGADOR_MESA_ID, JugadorMesaPeer::ID, $join_behavior);
     // symfony_behaviors behavior
     foreach (sfMixer::getCallables(self::getMixerPreSelectHook(__FUNCTION__)) as $sf_hook) {
         call_user_func($sf_hook, 'BaseTurnoPeer', $criteria, $con);
     }
     $stmt = BasePeer::doSelect($criteria, $con);
     $results = array();
     while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $key1 = TurnoPeer::getPrimaryKeyHashFromRow($row, 0);
         if (null !== ($obj1 = TurnoPeer::getInstanceFromPool($key1))) {
             // We no longer rehydrate the object, since this can cause data loss.
             // See http://www.propelorm.org/ticket/509
             // $obj1->hydrate($row, 0, true); // rehydrate
         } else {
             $cls = TurnoPeer::getOMClass();
             $obj1 = new $cls();
             $obj1->hydrate($row);
             TurnoPeer::addInstanceToPool($obj1, $key1);
         }
         // if obj1 already loaded
         // Add objects for joined JugadorMesa rows
         $key2 = JugadorMesaPeer::getPrimaryKeyHashFromRow($row, $startcol2);
         if ($key2 !== null) {
             $obj2 = JugadorMesaPeer::getInstanceFromPool($key2);
             if (!$obj2) {
                 $cls = JugadorMesaPeer::getOMClass();
                 $obj2 = new $cls();
                 $obj2->hydrate($row, $startcol2);
                 JugadorMesaPeer::addInstanceToPool($obj2, $key2);
             }
             // if obj2 loaded
             // Add the $obj1 (Turno) to the collection in $obj2 (JugadorMesa)
             $obj2->addTurno($obj1);
         }
         // if joined row not null
         $results[] = $obj1;
     }
     $stmt->closeCursor();
     return $results;
 }
Esempio n. 2
0
 public static function doSelectJoinAllExceptOrientacion(Criteria $c, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     $c = clone $c;
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     DivisionPeer::addSelectColumns($c);
     $startcol2 = DivisionPeer::NUM_COLUMNS - DivisionPeer::NUM_LAZY_LOAD_COLUMNS;
     AnioPeer::addSelectColumns($c);
     $startcol3 = $startcol2 + (AnioPeer::NUM_COLUMNS - AnioPeer::NUM_LAZY_LOAD_COLUMNS);
     TurnoPeer::addSelectColumns($c);
     $startcol4 = $startcol3 + (TurnoPeer::NUM_COLUMNS - TurnoPeer::NUM_LAZY_LOAD_COLUMNS);
     $c->addJoin(array(DivisionPeer::FK_ANIO_ID), array(AnioPeer::ID), $join_behavior);
     $c->addJoin(array(DivisionPeer::FK_TURNO_ID), array(TurnoPeer::ID), $join_behavior);
     $stmt = BasePeer::doSelect($c, $con);
     $results = array();
     while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $key1 = DivisionPeer::getPrimaryKeyHashFromRow($row, 0);
         if (null !== ($obj1 = DivisionPeer::getInstanceFromPool($key1))) {
         } else {
             $omClass = DivisionPeer::getOMClass();
             $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
             $obj1 = new $cls();
             $obj1->hydrate($row);
             DivisionPeer::addInstanceToPool($obj1, $key1);
         }
         $key2 = AnioPeer::getPrimaryKeyHashFromRow($row, $startcol2);
         if ($key2 !== null) {
             $obj2 = AnioPeer::getInstanceFromPool($key2);
             if (!$obj2) {
                 $omClass = AnioPeer::getOMClass();
                 $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
                 $obj2 = new $cls();
                 $obj2->hydrate($row, $startcol2);
                 AnioPeer::addInstanceToPool($obj2, $key2);
             }
             $obj2->addDivision($obj1);
         }
         $key3 = TurnoPeer::getPrimaryKeyHashFromRow($row, $startcol3);
         if ($key3 !== null) {
             $obj3 = TurnoPeer::getInstanceFromPool($key3);
             if (!$obj3) {
                 $omClass = TurnoPeer::getOMClass();
                 $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
                 $obj3 = new $cls();
                 $obj3->hydrate($row, $startcol3);
                 TurnoPeer::addInstanceToPool($obj3, $key3);
             }
             $obj3->addDivision($obj1);
         }
         $results[] = $obj1;
     }
     $stmt->closeCursor();
     return $results;
 }
Esempio n. 3
0
 /**
  * Populates an object of the default type or an object that inherit from the default.
  *
  * @param      array $row PropelPDO resultset row.
  * @param      int $startcol The 0-based offset for reading from the resultset row.
  * @throws PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  * @return array (Turno object, last column rank)
  */
 public static function populateObject($row, $startcol = 0)
 {
     $key = TurnoPeer::getPrimaryKeyHashFromRow($row, $startcol);
     if (null !== ($obj = TurnoPeer::getInstanceFromPool($key))) {
         // We no longer rehydrate the object, since this can cause data loss.
         // See http://www.propelorm.org/ticket/509
         // $obj->hydrate($row, $startcol, true); // rehydrate
         $col = $startcol + TurnoPeer::NUM_HYDRATE_COLUMNS;
     } else {
         $cls = TurnoPeer::OM_CLASS;
         $obj = new $cls();
         $col = $obj->hydrate($row, $startcol);
         TurnoPeer::addInstanceToPool($obj, $key);
     }
     return array($obj, $col);
 }
Esempio n. 4
0
 public static function doSelectJoinAllExceptHorarioescolartipo(Criteria $c, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     $c = clone $c;
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     HorarioescolarPeer::addSelectColumns($c);
     $startcol2 = HorarioescolarPeer::NUM_COLUMNS - HorarioescolarPeer::NUM_LAZY_LOAD_COLUMNS;
     EventoPeer::addSelectColumns($c);
     $startcol3 = $startcol2 + (EventoPeer::NUM_COLUMNS - EventoPeer::NUM_LAZY_LOAD_COLUMNS);
     EstablecimientoPeer::addSelectColumns($c);
     $startcol4 = $startcol3 + (EstablecimientoPeer::NUM_COLUMNS - EstablecimientoPeer::NUM_LAZY_LOAD_COLUMNS);
     TurnoPeer::addSelectColumns($c);
     $startcol5 = $startcol4 + (TurnoPeer::NUM_COLUMNS - TurnoPeer::NUM_LAZY_LOAD_COLUMNS);
     $c->addJoin(array(HorarioescolarPeer::FK_EVENTO_ID), array(EventoPeer::ID), $join_behavior);
     $c->addJoin(array(HorarioescolarPeer::FK_ESTABLECIMIENTO_ID), array(EstablecimientoPeer::ID), $join_behavior);
     $c->addJoin(array(HorarioescolarPeer::FK_TURNO_ID), array(TurnoPeer::ID), $join_behavior);
     $stmt = BasePeer::doSelect($c, $con);
     $results = array();
     while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $key1 = HorarioescolarPeer::getPrimaryKeyHashFromRow($row, 0);
         if (null !== ($obj1 = HorarioescolarPeer::getInstanceFromPool($key1))) {
         } else {
             $omClass = HorarioescolarPeer::getOMClass();
             $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
             $obj1 = new $cls();
             $obj1->hydrate($row);
             HorarioescolarPeer::addInstanceToPool($obj1, $key1);
         }
         $key2 = EventoPeer::getPrimaryKeyHashFromRow($row, $startcol2);
         if ($key2 !== null) {
             $obj2 = EventoPeer::getInstanceFromPool($key2);
             if (!$obj2) {
                 $omClass = EventoPeer::getOMClass();
                 $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
                 $obj2 = new $cls();
                 $obj2->hydrate($row, $startcol2);
                 EventoPeer::addInstanceToPool($obj2, $key2);
             }
             $obj2->addHorarioescolar($obj1);
         }
         $key3 = EstablecimientoPeer::getPrimaryKeyHashFromRow($row, $startcol3);
         if ($key3 !== null) {
             $obj3 = EstablecimientoPeer::getInstanceFromPool($key3);
             if (!$obj3) {
                 $omClass = EstablecimientoPeer::getOMClass();
                 $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
                 $obj3 = new $cls();
                 $obj3->hydrate($row, $startcol3);
                 EstablecimientoPeer::addInstanceToPool($obj3, $key3);
             }
             $obj3->addHorarioescolar($obj1);
         }
         $key4 = TurnoPeer::getPrimaryKeyHashFromRow($row, $startcol4);
         if ($key4 !== null) {
             $obj4 = TurnoPeer::getInstanceFromPool($key4);
             if (!$obj4) {
                 $omClass = TurnoPeer::getOMClass();
                 $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
                 $obj4 = new $cls();
                 $obj4->hydrate($row, $startcol4);
                 TurnoPeer::addInstanceToPool($obj4, $key4);
             }
             $obj4->addHorarioescolar($obj1);
         }
         $results[] = $obj1;
     }
     $stmt->closeCursor();
     return $results;
 }