/** * Selects a collection of {@link Product} objects with a {@link ProductI18n} translation populated. * * @param Criteria $criteria * @param string $culture * @param PropelPDO $con * @param string $join_behavior * * @return array */ public static function doSelectWithI18n(Criteria $criteria, $culture = null, $con = null, $join_behavior = Criteria::LEFT_JOIN) { $criteria = clone $criteria; if (null === $culture) { $culture = sfPropel::getDefaultCulture(); } // Set the correct dbName if it has not been overridden if ($criteria->getDbName() == Propel::getDefaultDB()) { $criteria->setDbName(self::DATABASE_NAME); } ProductPeer::addSelectColumns($criteria); $startcol = ProductPeer::NUM_COLUMNS - ProductPeer::NUM_LAZY_LOAD_COLUMNS; ProductI18nPeer::addSelectColumns($criteria); $criteria->addJoin(ProductPeer::ID, ProductI18nPeer::ID, $join_behavior); $criteria->add(ProductI18nPeer::CULTURE, $culture); foreach (sfMixer::getCallables('BaseProduct:doSelectJoin:doSelectJoin') as $sf_hook) { call_user_func($sf_hook, 'Product', $criteria, $con); } $stmt = BasePeer::doSelect($criteria, $con); $results = array(); while ($row = $stmt->fetch(PDO::FETCH_NUM)) { $key1 = ProductPeer::getPrimaryKeyHashFromRow($row, 0); if (null !== ($obj1 = ProductPeer::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 = ProductPeer::getOMClass(false); $obj1 = new $cls(); $obj1->hydrate($row); ProductPeer::addInstanceToPool($obj1, $key1); } // if $obj1 already loaded $key2 = ProductI18nPeer::getPrimaryKeyHashFromRow($row, $startcol); if ($key2 !== null) { $obj2 = ProductI18nPeer::getInstanceFromPool($key2); if (!$obj2) { $cls = ProductI18nPeer::getOMClass(false); $obj2 = new $cls(); $obj2->hydrate($row, $startcol); ProductI18nPeer::addInstanceToPool($obj2, $key2); } // if obj2 already loaded $obj1->setTranslationForCulture($obj2, $culture); } // if joined row was not null $results[] = $obj1; } $stmt->closeCursor(); return $results; }
/** * Selects a collection of ProductPlugin objects pre-filled with all related objects except Plugin. * * @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 ProductPlugin objects. * @throws PropelException Any exceptions caught during processing will be * rethrown wrapped into a PropelException. */ public static function doSelectJoinAllExceptPlugin(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(ProductPluginPeer::DATABASE_NAME); } ProductPluginPeer::addSelectColumns($criteria); $startcol2 = ProductPluginPeer::NUM_HYDRATE_COLUMNS; ProductPeer::addSelectColumns($criteria); $startcol3 = $startcol2 + ProductPeer::NUM_HYDRATE_COLUMNS; $criteria->addJoin(ProductPluginPeer::PRODUCT_ID, ProductPeer::ID, $join_behavior); $stmt = BasePeer::doSelect($criteria, $con); $results = array(); while ($row = $stmt->fetch(PDO::FETCH_NUM)) { $key1 = ProductPluginPeer::getPrimaryKeyHashFromRow($row, 0); if (null !== ($obj1 = ProductPluginPeer::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 = ProductPluginPeer::getOMClass(); $obj1 = new $cls(); $obj1->hydrate($row); ProductPluginPeer::addInstanceToPool($obj1, $key1); } // if obj1 already loaded // Add objects for joined Product rows $key2 = ProductPeer::getPrimaryKeyHashFromRow($row, $startcol2); if ($key2 !== null) { $obj2 = ProductPeer::getInstanceFromPool($key2); if (!$obj2) { $cls = ProductPeer::getOMClass(); $obj2 = new $cls(); $obj2->hydrate($row, $startcol2); ProductPeer::addInstanceToPool($obj2, $key2); } // if $obj2 already loaded // Add the $obj1 (ProductPlugin) to the collection in $obj2 (Product) $obj2->addProductPlugin($obj1); } // if joined row is not null $results[] = $obj1; } $stmt->closeCursor(); return $results; }
public static function doSelectWithI18n(Criteria $c, $culture = null, PropelPDO $con = null) { $c = clone $c; if ($culture === null) { $culture = sfPropel::getDefaultCulture(); } foreach (sfMixer::getCallables('BaseProductPeer:doSelectJoin:doSelectJoin') as $callable) { call_user_func($callable, 'BaseProductPeer', $c, $con); } if ($c->getDbName() == Propel::getDefaultDB()) { $c->setDbName(self::DATABASE_NAME); } ProductPeer::addSelectColumns($c); $startcol = ProductPeer::NUM_COLUMNS - ProductPeer::NUM_LAZY_LOAD_COLUMNS; ProductI18nPeer::addSelectColumns($c); $c->addJoin(ProductPeer::ID, ProductI18nPeer::ID); $c->add(ProductI18nPeer::CULTURE, $culture); $stmt = BasePeer::doSelect($c, $con); $results = array(); while ($row = $stmt->fetch(PDO::FETCH_NUM)) { $omClass = ProductPeer::getOMClass(); $cls = Propel::importClass($omClass); $obj1 = new $cls(); $obj1->hydrate($row); $obj1->setCulture($culture); $omClass = ProductI18nPeer::getOMClass(); $cls = Propel::importClass($omClass); $obj2 = new $cls(); $obj2->hydrate($row, $startcol); $obj1->setProductI18nForCulture($obj2, $culture); $obj2->setProduct($obj1); $results[] = $obj1; } return $results; }
/** * Selects a collection of CategoryHasProduct objects pre-filled with all related objects except Category. * * @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 CategoryHasProduct objects. * @throws PropelException Any exceptions caught during processing will be * rethrown wrapped into a PropelException. */ public static function doSelectJoinAllExceptCategory(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); } CategoryHasProductPeer::addSelectColumns($criteria); $startcol2 = CategoryHasProductPeer::NUM_COLUMNS - CategoryHasProductPeer::NUM_LAZY_LOAD_COLUMNS; ProductPeer::addSelectColumns($criteria); $startcol3 = $startcol2 + (ProductPeer::NUM_COLUMNS - ProductPeer::NUM_LAZY_LOAD_COLUMNS); $criteria->addJoin(CategoryHasProductPeer::PRODUCT_ID, ProductPeer::ID, $join_behavior); // symfony_behaviors behavior foreach (sfMixer::getCallables(self::getMixerPreSelectHook(__FUNCTION__)) as $sf_hook) { call_user_func($sf_hook, 'BaseCategoryHasProductPeer', $criteria, $con); } $stmt = BasePeer::doSelect($criteria, $con); $results = array(); while ($row = $stmt->fetch(PDO::FETCH_NUM)) { $key1 = CategoryHasProductPeer::getPrimaryKeyHashFromRow($row, 0); if (null !== ($obj1 = CategoryHasProductPeer::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 = CategoryHasProductPeer::getOMClass(false); $obj1 = new $cls(); $obj1->hydrate($row); CategoryHasProductPeer::addInstanceToPool($obj1, $key1); } // if obj1 already loaded // Add objects for joined Product rows $key2 = ProductPeer::getPrimaryKeyHashFromRow($row, $startcol2); if ($key2 !== null) { $obj2 = ProductPeer::getInstanceFromPool($key2); if (!$obj2) { $cls = ProductPeer::getOMClass(false); $obj2 = new $cls(); $obj2->hydrate($row, $startcol2); ProductPeer::addInstanceToPool($obj2, $key2); } // if $obj2 already loaded // Add the $obj1 (CategoryHasProduct) to the collection in $obj2 (Product) $obj2->addCategoryHasProduct($obj1); } // if joined row is not null $results[] = $obj1; } $stmt->closeCursor(); return $results; }
public static function populateObjects(ResultSet $rs) { $results = array(); $cls = ProductPeer::getOMClass(); $cls = Propel::import($cls); while ($rs->next()) { $obj = new $cls(); $obj->hydrate($rs); $results[] = $obj; } return $results; }
/** * The returned array will contain objects of the default type or * objects that inherit from the default. * * @throws PropelException Any exceptions caught during processing will be * rethrown wrapped into a PropelException. */ public static function populateObjects(PDOStatement $stmt) { $results = array(); // set the class once to avoid overhead in the loop $cls = ProductPeer::getOMClass(false); // populate the object(s) while ($row = $stmt->fetch(PDO::FETCH_NUM)) { $key = ProductPeer::getPrimaryKeyHashFromRow($row, 0); if (null !== ($obj = ProductPeer::getInstanceFromPool($key))) { // We no longer rehydrate the object, since this can cause data loss. // See http://propel.phpdb.org/trac/ticket/509 // $obj->hydrate($row, 0, true); // rehydrate $results[] = $obj; } else { $obj = new $cls(); $obj->hydrate($row); $results[] = $obj; ProductPeer::addInstanceToPool($obj, $key); } // if key exists } $stmt->closeCursor(); return $results; }
public static function doSelectJoinAll(Criteria $c, $con = null, $join_behavior = Criteria::LEFT_JOIN) { foreach (sfMixer::getCallables('BaseProductI18nPeer:doSelectJoinAll:doSelectJoinAll') as $callable) { call_user_func($callable, 'BaseProductI18nPeer', $c, $con); } $c = clone $c; if ($c->getDbName() == Propel::getDefaultDB()) { $c->setDbName(self::DATABASE_NAME); } ProductI18nPeer::addSelectColumns($c); $startcol2 = ProductI18nPeer::NUM_COLUMNS - ProductI18nPeer::NUM_LAZY_LOAD_COLUMNS; ProductPeer::addSelectColumns($c); $startcol3 = $startcol2 + (ProductPeer::NUM_COLUMNS - ProductPeer::NUM_LAZY_LOAD_COLUMNS); $c->addJoin(array(ProductI18nPeer::ID), array(ProductPeer::ID), $join_behavior); $stmt = BasePeer::doSelect($c, $con); $results = array(); while ($row = $stmt->fetch(PDO::FETCH_NUM)) { $key1 = ProductI18nPeer::getPrimaryKeyHashFromRow($row, 0); if (null !== ($obj1 = ProductI18nPeer::getInstanceFromPool($key1))) { } else { $omClass = ProductI18nPeer::getOMClass(); $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1); $obj1 = new $cls(); $obj1->hydrate($row); ProductI18nPeer::addInstanceToPool($obj1, $key1); } $key2 = ProductPeer::getPrimaryKeyHashFromRow($row, $startcol2); if ($key2 !== null) { $obj2 = ProductPeer::getInstanceFromPool($key2); if (!$obj2) { $omClass = ProductPeer::getOMClass(); $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1); $obj2 = new $cls(); $obj2->hydrate($row, $startcol2); ProductPeer::addInstanceToPool($obj2, $key2); } $obj2->addProductI18n($obj1); } $results[] = $obj1; } $stmt->closeCursor(); return $results; }
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); } ProductPeer::addSelectColumns($c); $startcol = ProductPeer::NUM_COLUMNS - ProductPeer::NUM_LAZY_LOAD_COLUMNS + 1; ProductI18nPeer::addSelectColumns($c); $c->addJoin(ProductPeer::ID, ProductI18nPeer::ID); $c->add(ProductI18nPeer::CULTURE, $culture); $rs = BasePeer::doSelect($c, $con); $results = array(); while ($rs->next()) { $omClass = ProductPeer::getOMClass(); $cls = Propel::import($omClass); $obj1 = new $cls(); $obj1->hydrate($rs); $obj1->setCulture($culture); $omClass = ProductI18nPeer::getOMClass($rs, $startcol); $cls = Propel::import($omClass); $obj2 = new $cls(); $obj2->hydrate($rs, $startcol); $obj1->setProductI18nForCulture($obj2, $culture); $obj2->setProduct($obj1); $results[] = $obj1; } return $results; }
public static function doSelectJoinAll(Criteria $c, $con = null) { $c = clone $c; if ($c->getDbName() == Propel::getDefaultDB()) { $c->setDbName(self::DATABASE_NAME); } ProductI18nPeer::addSelectColumns($c); $startcol2 = ProductI18nPeer::NUM_COLUMNS - ProductI18nPeer::NUM_LAZY_LOAD_COLUMNS + 1; ProductPeer::addSelectColumns($c); $startcol3 = $startcol2 + ProductPeer::NUM_COLUMNS; $c->addJoin(ProductI18nPeer::ID, ProductPeer::ID); $rs = BasePeer::doSelect($c, $con); $results = array(); while ($rs->next()) { $omClass = ProductI18nPeer::getOMClass(); $cls = Propel::import($omClass); $obj1 = new $cls(); $obj1->hydrate($rs); $omClass = ProductPeer::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->getProduct(); if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) { $newObject = false; $temp_obj2->addProductI18n($obj1); break; } } if ($newObject) { $obj2->initProductI18ns(); $obj2->addProductI18n($obj1); } $results[] = $obj1; } return $results; }