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(WebComponentPeer::ID, $pks, Criteria::IN); $objs = WebComponentPeer::doSelect($criteria, $con); } return $objs; }
public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME) { $keys = WebComponentPeer::getFieldNames($keyType); if (array_key_exists($keys[0], $arr)) { $this->setId($arr[$keys[0]]); } if (array_key_exists($keys[1], $arr)) { $this->setType($arr[$keys[1]]); } }
public function getWebComponent($con = null) { include_once 'lib/model/om/BaseWebComponentPeer.php'; if ($this->aWebComponent === null && $this->component_id !== null) { $this->aWebComponent = WebComponentPeer::retrieveByPK($this->component_id, $con); } return $this->aWebComponent; }
public static function doSelectJoinAllExceptWebMenuType(Criteria $c, $con = null) { $c = clone $c; if ($c->getDbName() == Propel::getDefaultDB()) { $c->setDbName(self::DATABASE_NAME); } WebMenuPeer::addSelectColumns($c); $startcol2 = WebMenuPeer::NUM_COLUMNS - WebMenuPeer::NUM_LAZY_LOAD_COLUMNS + 1; WebPageTemplatesPeer::addSelectColumns($c); $startcol3 = $startcol2 + WebPageTemplatesPeer::NUM_COLUMNS; WebComponentPeer::addSelectColumns($c); $startcol4 = $startcol3 + WebComponentPeer::NUM_COLUMNS; $c->addJoin(WebMenuPeer::PAGE_TEMPLATES_ID, WebPageTemplatesPeer::ID); $c->addJoin(WebMenuPeer::COMPONENT_ID, WebComponentPeer::ID); $rs = BasePeer::doSelect($c, $con); $results = array(); while ($rs->next()) { $omClass = WebMenuPeer::getOMClass(); $cls = Propel::import($omClass); $obj1 = new $cls(); $obj1->hydrate($rs); $omClass = WebPageTemplatesPeer::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->getWebPageTemplates(); if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) { $newObject = false; $temp_obj2->addWebMenu($obj1); break; } } if ($newObject) { $obj2->initWebMenus(); $obj2->addWebMenu($obj1); } $omClass = WebComponentPeer::getOMClass(); $cls = Propel::import($omClass); $obj3 = new $cls(); $obj3->hydrate($rs, $startcol3); $newObject = true; for ($j = 0, $resCount = count($results); $j < $resCount; $j++) { $temp_obj1 = $results[$j]; $temp_obj3 = $temp_obj1->getWebComponent(); if ($temp_obj3->getPrimaryKey() === $obj3->getPrimaryKey()) { $newObject = false; $temp_obj3->addWebMenu($obj1); break; } } if ($newObject) { $obj3->initWebMenus(); $obj3->addWebMenu($obj1); } $results[] = $obj1; } return $results; }