示例#1
0
 /**
  * Selects a collection of sfBreadNav objects pre-filled with all related objects.
  *
  * @param      Criteria  $c
  * @param      PropelPDO $con
  * @param      String    $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN
  * @return     array Array of sfBreadNav objects.
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function doSelectJoinAll(Criteria $c, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     foreach (sfMixer::getCallables('BasesfBreadNavPeer:doSelectJoinAll:doSelectJoinAll') as $callable) {
         call_user_func($callable, 'BasesfBreadNavPeer', $c, $con);
     }
     $c = clone $c;
     // Set the correct dbName if it has not been overridden
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     sfBreadNavPeer::addSelectColumns($c);
     $startcol2 = sfBreadNavPeer::NUM_COLUMNS - sfBreadNavPeer::NUM_LAZY_LOAD_COLUMNS;
     sfBreadNavApplicationPeer::addSelectColumns($c);
     $startcol3 = $startcol2 + (sfBreadNavApplicationPeer::NUM_COLUMNS - sfBreadNavApplicationPeer::NUM_LAZY_LOAD_COLUMNS);
     $c->addJoin(array(sfBreadNavPeer::SCOPE), array(sfBreadNavApplicationPeer::ID), $join_behavior);
     $stmt = BasePeer::doSelect($c, $con);
     $results = array();
     while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $key1 = sfBreadNavPeer::getPrimaryKeyHashFromRow($row, 0);
         if (null !== ($obj1 = sfBreadNavPeer::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 {
             $omClass = sfBreadNavPeer::getOMClass();
             $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
             $obj1 = new $cls();
             $obj1->hydrate($row);
             sfBreadNavPeer::addInstanceToPool($obj1, $key1);
         }
         // if obj1 already loaded
         // Add objects for joined sfBreadNavApplication rows
         $key2 = sfBreadNavApplicationPeer::getPrimaryKeyHashFromRow($row, $startcol2);
         if ($key2 !== null) {
             $obj2 = sfBreadNavApplicationPeer::getInstanceFromPool($key2);
             if (!$obj2) {
                 $omClass = sfBreadNavApplicationPeer::getOMClass();
                 $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
                 $obj2 = new $cls();
                 $obj2->hydrate($row, $startcol2);
                 sfBreadNavApplicationPeer::addInstanceToPool($obj2, $key2);
             }
             // if obj2 loaded
             // Add the $obj1 (sfBreadNav) to the collection in $obj2 (sfBreadNavApplication)
             $obj2->addsfBreadNav($obj1);
         }
         // if joined row not null
         $results[] = $obj1;
     }
     $stmt->closeCursor();
     return $results;
 }
 /**
  * Reload all already loaded nodes to sync them with updated db
  *
  * @param      sfBreadNav $node	Propel object for parent node
  * @param      int $delta	Value to be shifted by, can be negative
  * @param      PropelPDO $con		Connection to use.
  */
 protected static function updateLoadedNode(NodeObject $node, $delta, PropelPDO $con = null)
 {
     if (Propel::isInstancePoolingEnabled()) {
         $keys = array();
         foreach (self::$instances as $obj) {
             $keys[] = $obj->getPrimaryKey();
         }
         if (!empty($keys)) {
             // We don't need to alter the object instance pool; we're just modifying these ones
             // already in the pool.
             $criteria = new Criteria(self::DATABASE_NAME);
             $criteria->add(sfBreadNavPeer::ID, $keys, Criteria::IN);
             $stmt = sfBreadNavPeer::doSelectStmt($criteria, $con);
             while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
                 $key = sfBreadNavPeer::getPrimaryKeyHashFromRow($row, 0);
                 if (null !== ($object = sfBreadNavPeer::getInstanceFromPool($key))) {
                     $object->setLeftValue($row[7]);
                     $object->setRightValue($row[8]);
                 }
             }
             $stmt->closeCursor();
         }
     }
 }