<?php

$categoryId = $product->getCategory();
$c = new Criteria();
$c->add(ProductCategoryPeer::ID, $categoryId);
$data = ProductCategoryPeer::doSelect($c);
echo $data[0]->getCategoryName();
 public static function doSelectJoinAll(Criteria $c, $con = null)
 {
     $c = clone $c;
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     ProductCategoryI18nPeer::addSelectColumns($c);
     $startcol2 = ProductCategoryI18nPeer::NUM_COLUMNS - ProductCategoryI18nPeer::NUM_LAZY_LOAD_COLUMNS + 1;
     ProductCategoryPeer::addSelectColumns($c);
     $startcol3 = $startcol2 + ProductCategoryPeer::NUM_COLUMNS;
     $c->addJoin(ProductCategoryI18nPeer::ID, ProductCategoryPeer::ID);
     $rs = BasePeer::doSelect($c, $con);
     $results = array();
     while ($rs->next()) {
         $omClass = ProductCategoryI18nPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj1 = new $cls();
         $obj1->hydrate($rs);
         $omClass = ProductCategoryPeer::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->getProductCategory();
             if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj2->addProductCategoryI18n($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj2->initProductCategoryI18ns();
             $obj2->addProductCategoryI18n($obj1);
         }
         $results[] = $obj1;
     }
     return $results;
 }
示例#3
0
 public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME)
 {
     $keys = ProductCategoryPeer::getFieldNames($keyType);
     if (array_key_exists($keys[0], $arr)) {
         $this->setId($arr[$keys[0]]);
     }
     if (array_key_exists($keys[1], $arr)) {
         $this->setLabel($arr[$keys[1]]);
     }
     if (array_key_exists($keys[2], $arr)) {
         $this->setTreeLeft($arr[$keys[2]]);
     }
     if (array_key_exists($keys[3], $arr)) {
         $this->setTreeRight($arr[$keys[3]]);
     }
     if (array_key_exists($keys[4], $arr)) {
         $this->setTreeParent($arr[$keys[4]]);
     }
     if (array_key_exists($keys[5], $arr)) {
         $this->setTopicId($arr[$keys[5]]);
     }
 }
 public function getProductCategory($con = null)
 {
     if ($this->aProductCategory === null && $this->id !== null) {
         include_once 'lib/model/om/BaseProductCategoryPeer.php';
         $this->aProductCategory = ProductCategoryPeer::retrieveByPK($this->id, $con);
     }
     return $this->aProductCategory;
 }
 /**
  * Selects a collection of ProductHasProductCategory objects pre-filled with all related objects except Product.
  *
  * @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 ProductHasProductCategory objects.
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function doSelectJoinAllExceptProduct(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);
     }
     ProductHasProductCategoryPeer::addSelectColumns($criteria);
     $startcol2 = ProductHasProductCategoryPeer::NUM_COLUMNS - ProductHasProductCategoryPeer::NUM_LAZY_LOAD_COLUMNS;
     ProductCategoryPeer::addSelectColumns($criteria);
     $startcol3 = $startcol2 + (ProductCategoryPeer::NUM_COLUMNS - ProductCategoryPeer::NUM_LAZY_LOAD_COLUMNS);
     $criteria->addJoin(ProductHasProductCategoryPeer::PRODUCT_CATEGORY_ID, ProductCategoryPeer::ID, $join_behavior);
     // symfony_behaviors behavior
     foreach (sfMixer::getCallables(self::getMixerPreSelectHook(__FUNCTION__)) as $sf_hook) {
         call_user_func($sf_hook, 'BaseProductHasProductCategoryPeer', $criteria, $con);
     }
     $stmt = BasePeer::doSelect($criteria, $con);
     $results = array();
     while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $key1 = ProductHasProductCategoryPeer::getPrimaryKeyHashFromRow($row, 0);
         if (null !== ($obj1 = ProductHasProductCategoryPeer::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 = ProductHasProductCategoryPeer::getOMClass(false);
             $obj1 = new $cls();
             $obj1->hydrate($row);
             ProductHasProductCategoryPeer::addInstanceToPool($obj1, $key1);
         }
         // if obj1 already loaded
         // Add objects for joined ProductCategory rows
         $key2 = ProductCategoryPeer::getPrimaryKeyHashFromRow($row, $startcol2);
         if ($key2 !== null) {
             $obj2 = ProductCategoryPeer::getInstanceFromPool($key2);
             if (!$obj2) {
                 $cls = ProductCategoryPeer::getOMClass(false);
                 $obj2 = new $cls();
                 $obj2->hydrate($row, $startcol2);
                 ProductCategoryPeer::addInstanceToPool($obj2, $key2);
             }
             // if $obj2 already loaded
             // Add the $obj1 (ProductHasProductCategory) to the collection in $obj2 (ProductCategory)
             $obj2->addProductHasProductCategory($obj1);
         }
         // if joined row is not null
         $results[] = $obj1;
     }
     $stmt->closeCursor();
     return $results;
 }
 /**
  * Retrieve multiple objects by pkey.
  *
  * @param      array $pks List of primary keys
  * @param      PropelPDO $con the connection to use
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function retrieveByPKs($pks, PropelPDO $con = null)
 {
     if ($con === null) {
         $con = Propel::getConnection(ProductCategoryPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(ProductCategoryPeer::DATABASE_NAME);
         $criteria->add(ProductCategoryPeer::ID, $pks, Criteria::IN);
         $objs = ProductCategoryPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
 /**
  * Returns the number of related ProductCategory objects.
  *
  * @param      Criteria $criteria
  * @param      boolean $distinct
  * @param      PropelPDO $con
  * @return     int Count of related ProductCategory objects.
  * @throws     PropelException
  */
 public function countProductCategorysRelatedByParentId(Criteria $criteria = null, $distinct = false, PropelPDO $con = null)
 {
     if ($criteria === null) {
         $criteria = new Criteria(ProductCategoryPeer::DATABASE_NAME);
     } else {
         $criteria = clone $criteria;
     }
     if ($distinct) {
         $criteria->setDistinct();
     }
     $count = null;
     if ($this->collProductCategorysRelatedByParentId === null) {
         if ($this->isNew()) {
             $count = 0;
         } else {
             $criteria->add(ProductCategoryPeer::PARENT_ID, $this->id);
             $count = ProductCategoryPeer::doCount($criteria, false, $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 count of the collection.
             $criteria->add(ProductCategoryPeer::PARENT_ID, $this->id);
             if (!isset($this->lastProductCategoryRelatedByParentIdCriteria) || !$this->lastProductCategoryRelatedByParentIdCriteria->equals($criteria)) {
                 $count = ProductCategoryPeer::doCount($criteria, false, $con);
             } else {
                 $count = count($this->collProductCategorysRelatedByParentId);
             }
         } else {
             $count = count($this->collProductCategorysRelatedByParentId);
         }
     }
     return $count;
 }
 /**
  * Get the associated ProductCategory object
  *
  * @param      PropelPDO Optional Connection object.
  * @return     ProductCategory The associated ProductCategory object.
  * @throws     PropelException
  */
 public function getProductCategory(PropelPDO $con = null)
 {
     if ($this->aProductCategory === null && $this->product_category_id !== null) {
         $this->aProductCategory = ProductCategoryPeer::retrieveByPk($this->product_category_id);
         /* The following can be used additionally to
         		   guarantee the related object contains a reference
         		   to this object.  This level of coupling may, however, be
         		   undesirable since it could result in an only partially populated collection
         		   in the referenced object.
         		   $this->aProductCategory->addProductHasProductCategorys($this);
         		 */
     }
     return $this->aProductCategory;
 }