public function getTaggings($criteria = null, $con = null) { include_once 'plugins/sfPropelActAsTaggableBehaviorPlugin/lib/model/om/BaseTaggingPeer.php'; if ($criteria === null) { $criteria = new Criteria(); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } if ($this->collTaggings === null) { if ($this->isNew()) { $this->collTaggings = array(); } else { $criteria->add(TaggingPeer::TAG_ID, $this->getID()); TaggingPeer::addSelectColumns($criteria); $this->collTaggings = TaggingPeer::doSelect($criteria, $con); } } else { if (!$this->isNew()) { $criteria->add(TaggingPeer::TAG_ID, $this->getID()); TaggingPeer::addSelectColumns($criteria); if (!isset($this->lastTaggingCriteria) || !$this->lastTaggingCriteria->equals($criteria)) { $this->collTaggings = TaggingPeer::doSelect($criteria, $con); } } } $this->lastTaggingCriteria = $criteria; return $this->collTaggings; }
/** * Selects a collection of Tagging 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 Tagging 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('BaseTaggingPeer:doSelectJoinAll:doSelectJoinAll') as $callable) { call_user_func($callable, 'BaseTaggingPeer', $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); } TaggingPeer::addSelectColumns($c); $startcol2 = TaggingPeer::NUM_COLUMNS - TaggingPeer::NUM_LAZY_LOAD_COLUMNS; TagPeer::addSelectColumns($c); $startcol3 = $startcol2 + (TagPeer::NUM_COLUMNS - TagPeer::NUM_LAZY_LOAD_COLUMNS); $c->addJoin(array(TaggingPeer::TAG_ID), array(TagPeer::ID), $join_behavior); $stmt = BasePeer::doSelect($c, $con); $results = array(); while ($row = $stmt->fetch(PDO::FETCH_NUM)) { $key1 = TaggingPeer::getPrimaryKeyHashFromRow($row, 0); if (null !== ($obj1 = TaggingPeer::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 = TaggingPeer::getOMClass(); $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1); $obj1 = new $cls(); $obj1->hydrate($row); TaggingPeer::addInstanceToPool($obj1, $key1); } // if obj1 already loaded // Add objects for joined Tag rows $key2 = TagPeer::getPrimaryKeyHashFromRow($row, $startcol2); if ($key2 !== null) { $obj2 = TagPeer::getInstanceFromPool($key2); if (!$obj2) { $omClass = TagPeer::getOMClass(); $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1); $obj2 = new $cls(); $obj2->hydrate($row, $startcol2); TagPeer::addInstanceToPool($obj2, $key2); } // if obj2 loaded // Add the $obj1 (Tagging) to the collection in $obj2 (Tag) $obj2->addTagging($obj1); } // if joined row not null $results[] = $obj1; } $stmt->closeCursor(); return $results; }
/** * Gets an array of Tagging 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 Tag has previously been saved, it will retrieve * related Taggings from storage. If this Tag 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 Tagging[] * @throws PropelException */ public function getTaggings($criteria = null, PropelPDO $con = null) { if ($criteria === null) { $criteria = new Criteria(TagPeer::DATABASE_NAME); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } if ($this->collTaggings === null) { if ($this->isNew()) { $this->collTaggings = array(); } else { $criteria->add(TaggingPeer::TAG_ID, $this->id); TaggingPeer::addSelectColumns($criteria); $this->collTaggings = TaggingPeer::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(TaggingPeer::TAG_ID, $this->id); TaggingPeer::addSelectColumns($criteria); if (!isset($this->lastTaggingCriteria) || !$this->lastTaggingCriteria->equals($criteria)) { $this->collTaggings = TaggingPeer::doSelect($criteria, $con); } } } $this->lastTaggingCriteria = $criteria; return $this->collTaggings; }
public static function doSelectJoinAll(Criteria $c, $con = null) { foreach (sfMixer::getCallables('BaseTaggingPeer:doSelectJoinAll:doSelectJoinAll') as $callable) { call_user_func($callable, 'BaseTaggingPeer', $c, $con); } $c = clone $c; if ($c->getDbName() == Propel::getDefaultDB()) { $c->setDbName(self::DATABASE_NAME); } TaggingPeer::addSelectColumns($c); $startcol2 = TaggingPeer::NUM_COLUMNS - TaggingPeer::NUM_LAZY_LOAD_COLUMNS + 1; TagPeer::addSelectColumns($c); $startcol3 = $startcol2 + TagPeer::NUM_COLUMNS; $c->addJoin(TaggingPeer::TAG_ID, TagPeer::ID); $rs = BasePeer::doSelect($c, $con); $results = array(); while ($rs->next()) { $omClass = TaggingPeer::getOMClass(); $cls = Propel::import($omClass); $obj1 = new $cls(); $obj1->hydrate($rs); $omClass = TagPeer::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->getTag(); if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) { $newObject = false; $temp_obj2->addTagging($obj1); break; } } if ($newObject) { $obj2->initTaggings(); $obj2->addTagging($obj1); } $results[] = $obj1; } return $results; }