/** * Gets an array of ProductI18n objects which contain a foreign key that references this object. * * If this collection has already been initialized with an identical Criteria, it returns the collection. * Otherwise if this Product has previously been saved, it will retrieve * related Translations from storage. If this Product is new, it will return * an empty collection or the current collection, the criteria is ignored on a new object. * * @param PropelPDO $con * @param Criteria $criteria * @return array ProductI18n[] * @throws PropelException */ public function getTranslations($criteria = null, PropelPDO $con = null) { if ($criteria === null) { $criteria = new Criteria(ProductPeer::DATABASE_NAME); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } if ($this->collTranslations === null) { if ($this->isNew()) { $this->collTranslations = array(); } else { $criteria->add(ProductI18nPeer::ID, $this->id); ProductI18nPeer::addSelectColumns($criteria); $this->collTranslations = ProductI18nPeer::doSelect($criteria, $con); } } else { // criteria has no effect for a new object if (!$this->isNew()) { // the following code is to determine if a new query is // called for. If the criteria is the same as the last // one, just return the collection. $criteria->add(ProductI18nPeer::ID, $this->id); ProductI18nPeer::addSelectColumns($criteria); if (!isset($this->lastTranslationCriteria) || !$this->lastTranslationCriteria->equals($criteria)) { $this->collTranslations = ProductI18nPeer::doSelect($criteria, $con); } } } $this->lastTranslationCriteria = $criteria; return $this->collTranslations; }
/** * 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; }
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 ProductI18n 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 ProductI18n 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); } ProductI18nPeer::addSelectColumns($criteria); $startcol2 = ProductI18nPeer::NUM_COLUMNS - ProductI18nPeer::NUM_LAZY_LOAD_COLUMNS; ProductPeer::addSelectColumns($criteria); $startcol3 = $startcol2 + (ProductPeer::NUM_COLUMNS - ProductPeer::NUM_LAZY_LOAD_COLUMNS); $criteria->addJoin(ProductI18nPeer::ID, ProductPeer::ID, $join_behavior); // symfony_behaviors behavior foreach (sfMixer::getCallables(self::getMixerPreSelectHook(__FUNCTION__)) as $sf_hook) { call_user_func($sf_hook, 'BaseProductI18nPeer', $criteria, $con); } $stmt = BasePeer::doSelect($criteria, $con); $results = array(); while ($row = $stmt->fetch(PDO::FETCH_NUM)) { $key1 = ProductI18nPeer::getPrimaryKeyHashFromRow($row, 0); if (null !== ($obj1 = ProductI18nPeer::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 = ProductI18nPeer::getOMClass(false); $obj1 = new $cls(); $obj1->hydrate($row); ProductI18nPeer::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 loaded // Add the $obj1 (ProductI18n) to the collection in $obj2 (Product) $obj2->addTranslation($obj1); } // if joined row not null $results[] = $obj1; } $stmt->closeCursor(); return $results; }
public function getProductI18ns($criteria = null, PropelPDO $con = null) { if ($criteria === null) { $criteria = new Criteria(ProductPeer::DATABASE_NAME); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } if ($this->collProductI18ns === null) { if ($this->isNew()) { $this->collProductI18ns = array(); } else { $criteria->add(ProductI18nPeer::ID, $this->id); ProductI18nPeer::addSelectColumns($criteria); $this->collProductI18ns = ProductI18nPeer::doSelect($criteria, $con); } } else { if (!$this->isNew()) { $criteria->add(ProductI18nPeer::ID, $this->id); ProductI18nPeer::addSelectColumns($criteria); if (!isset($this->lastProductI18nCriteria) || !$this->lastProductI18nCriteria->equals($criteria)) { $this->collProductI18ns = ProductI18nPeer::doSelect($criteria, $con); } } } $this->lastProductI18nCriteria = $criteria; return $this->collProductI18ns; }
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 function getProductI18ns($criteria = null, $con = null) { include_once 'lib/model/om/BaseProductI18nPeer.php'; if ($criteria === null) { $criteria = new Criteria(); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } if ($this->collProductI18ns === null) { if ($this->isNew()) { $this->collProductI18ns = array(); } else { $criteria->add(ProductI18nPeer::ID, $this->getId()); ProductI18nPeer::addSelectColumns($criteria); $this->collProductI18ns = ProductI18nPeer::doSelect($criteria, $con); } } else { if (!$this->isNew()) { $criteria->add(ProductI18nPeer::ID, $this->getId()); ProductI18nPeer::addSelectColumns($criteria); if (!isset($this->lastProductI18nCriteria) || !$this->lastProductI18nCriteria->equals($criteria)) { $this->collProductI18ns = ProductI18nPeer::doSelect($criteria, $con); } } } $this->lastProductI18nCriteria = $criteria; return $this->collProductI18ns; }
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; }