public static function retrieveByPKs($pks, $con = null) { if ($con === null) { $con = Propel::getConnection(self::DATABASE_NAME); } $objs = null; if (empty($pks)) { $objs = array(); } else { $criteria = new Criteria(); $criteria->add(HobbiesPeer::ID, $pks, Criteria::IN); $objs = HobbiesPeer::doSelect($criteria, $con); } return $objs; }
public function getHobbies($con = null) { include_once 'lib/model/om/BaseHobbiesPeer.php'; if ($this->aHobbies === null && $this->hobbies_id !== null) { $this->aHobbies = HobbiesPeer::retrieveByPK($this->hobbies_id, $con); } return $this->aHobbies; }
public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME) { $keys = HobbiesPeer::getFieldNames($keyType); if (array_key_exists($keys[0], $arr)) { $this->setId($arr[$keys[0]]); } if (array_key_exists($keys[1], $arr)) { $this->setName($arr[$keys[1]]); } }
public static function doSelectJoinAllExceptUser(Criteria $c, $con = null) { $c = clone $c; if ($c->getDbName() == Propel::getDefaultDB()) { $c->setDbName(self::DATABASE_NAME); } UserhobbiesPeer::addSelectColumns($c); $startcol2 = UserhobbiesPeer::NUM_COLUMNS - UserhobbiesPeer::NUM_LAZY_LOAD_COLUMNS + 1; HobbiesPeer::addSelectColumns($c); $startcol3 = $startcol2 + HobbiesPeer::NUM_COLUMNS; $c->addJoin(UserhobbiesPeer::HOBBIES_ID, HobbiesPeer::ID); $rs = BasePeer::doSelect($c, $con); $results = array(); while ($rs->next()) { $omClass = UserhobbiesPeer::getOMClass(); $cls = Propel::import($omClass); $obj1 = new $cls(); $obj1->hydrate($rs); $omClass = HobbiesPeer::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->getHobbies(); if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) { $newObject = false; $temp_obj2->addUserhobbies($obj1); break; } } if ($newObject) { $obj2->initUserhobbiess(); $obj2->addUserhobbies($obj1); } $results[] = $obj1; } return $results; }