コード例 #1
0
 public static function doSelectJoinAll(Criteria $c, $con = null)
 {
     $c = clone $c;
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     ProductCategoryI18nPeer::addSelectColumns($c);
     $startcol2 = ProductCategoryI18nPeer::NUM_COLUMNS - ProductCategoryI18nPeer::NUM_LAZY_LOAD_COLUMNS + 1;
     ProductCategoryPeer::addSelectColumns($c);
     $startcol3 = $startcol2 + ProductCategoryPeer::NUM_COLUMNS;
     $c->addJoin(ProductCategoryI18nPeer::ID, ProductCategoryPeer::ID);
     $rs = BasePeer::doSelect($c, $con);
     $results = array();
     while ($rs->next()) {
         $omClass = ProductCategoryI18nPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj1 = new $cls();
         $obj1->hydrate($rs);
         $omClass = ProductCategoryPeer::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->getProductCategory();
             if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj2->addProductCategoryI18n($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj2->initProductCategoryI18ns();
             $obj2->addProductCategoryI18n($obj1);
         }
         $results[] = $obj1;
     }
     return $results;
 }
コード例 #2
0
 /**
  * Selects a collection of ProductCategory 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 ProductCategory 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);
     }
     ProductCategoryPeer::addSelectColumns($criteria);
     $startcol2 = ProductCategoryPeer::NUM_COLUMNS - ProductCategoryPeer::NUM_LAZY_LOAD_COLUMNS;
     // symfony_behaviors behavior
     foreach (sfMixer::getCallables(self::getMixerPreSelectHook(__FUNCTION__)) as $sf_hook) {
         call_user_func($sf_hook, 'BaseProductCategoryPeer', $criteria, $con);
     }
     $stmt = BasePeer::doSelect($criteria, $con);
     $results = array();
     while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $key1 = ProductCategoryPeer::getPrimaryKeyHashFromRow($row, 0);
         if (null !== ($obj1 = ProductCategoryPeer::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 = ProductCategoryPeer::getOMClass(false);
             $obj1 = new $cls();
             $obj1->hydrate($row);
             ProductCategoryPeer::addInstanceToPool($obj1, $key1);
         }
         // if obj1 already loaded
         $results[] = $obj1;
     }
     $stmt->closeCursor();
     return $results;
 }
 /**
  * Selects a collection of ProductHasProductCategory objects pre-filled with all related objects except Product.
  *
  * @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 ProductHasProductCategory objects.
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function doSelectJoinAllExceptProduct(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);
     }
     ProductHasProductCategoryPeer::addSelectColumns($criteria);
     $startcol2 = ProductHasProductCategoryPeer::NUM_COLUMNS - ProductHasProductCategoryPeer::NUM_LAZY_LOAD_COLUMNS;
     ProductCategoryPeer::addSelectColumns($criteria);
     $startcol3 = $startcol2 + (ProductCategoryPeer::NUM_COLUMNS - ProductCategoryPeer::NUM_LAZY_LOAD_COLUMNS);
     $criteria->addJoin(ProductHasProductCategoryPeer::PRODUCT_CATEGORY_ID, ProductCategoryPeer::ID, $join_behavior);
     // symfony_behaviors behavior
     foreach (sfMixer::getCallables(self::getMixerPreSelectHook(__FUNCTION__)) as $sf_hook) {
         call_user_func($sf_hook, 'BaseProductHasProductCategoryPeer', $criteria, $con);
     }
     $stmt = BasePeer::doSelect($criteria, $con);
     $results = array();
     while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $key1 = ProductHasProductCategoryPeer::getPrimaryKeyHashFromRow($row, 0);
         if (null !== ($obj1 = ProductHasProductCategoryPeer::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 = ProductHasProductCategoryPeer::getOMClass(false);
             $obj1 = new $cls();
             $obj1->hydrate($row);
             ProductHasProductCategoryPeer::addInstanceToPool($obj1, $key1);
         }
         // if obj1 already loaded
         // Add objects for joined ProductCategory rows
         $key2 = ProductCategoryPeer::getPrimaryKeyHashFromRow($row, $startcol2);
         if ($key2 !== null) {
             $obj2 = ProductCategoryPeer::getInstanceFromPool($key2);
             if (!$obj2) {
                 $cls = ProductCategoryPeer::getOMClass(false);
                 $obj2 = new $cls();
                 $obj2->hydrate($row, $startcol2);
                 ProductCategoryPeer::addInstanceToPool($obj2, $key2);
             }
             // if $obj2 already loaded
             // Add the $obj1 (ProductHasProductCategory) to the collection in $obj2 (ProductCategory)
             $obj2->addProductHasProductCategory($obj1);
         }
         // if joined row is not null
         $results[] = $obj1;
     }
     $stmt->closeCursor();
     return $results;
 }
コード例 #4
0
 public static function doSelectWithI18n(Criteria $c, $culture = null, $con = null)
 {
     if ($culture === null) {
         $culture = sfContext::getInstance()->getUser()->getCulture();
     }
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     ProductCategoryPeer::addSelectColumns($c);
     $startcol = ProductCategoryPeer::NUM_COLUMNS - ProductCategoryPeer::NUM_LAZY_LOAD_COLUMNS + 1;
     ProductCategoryI18nPeer::addSelectColumns($c);
     $c->addJoin(ProductCategoryPeer::ID, ProductCategoryI18nPeer::ID);
     $c->add(ProductCategoryI18nPeer::CULTURE, $culture);
     $rs = BasePeer::doSelect($c, $con);
     $results = array();
     while ($rs->next()) {
         $omClass = ProductCategoryPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj1 = new $cls();
         $obj1->hydrate($rs);
         $obj1->setCulture($culture);
         $omClass = ProductCategoryI18nPeer::getOMClass($rs, $startcol);
         $cls = Propel::import($omClass);
         $obj2 = new $cls();
         $obj2->hydrate($rs, $startcol);
         $obj1->setProductCategoryI18nForCulture($obj2, $culture);
         $obj2->setProductCategory($obj1);
         $results[] = $obj1;
     }
     return $results;
 }