Esempio n. 1
0
 /**
  * Gets an array of assetParamsOutput 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 asset has previously been saved, it will retrieve
  * related assetParamsOutputs from storage. If this asset 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 flavorParamsOutput[]
  * @throws     PropelException
  */
 public function getflavorParamsOutputs($criteria = null, PropelPDO $con = null)
 {
     if ($criteria === null) {
         $criteria = new Criteria(assetPeer::DATABASE_NAME);
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collassetParamsOutputs === null) {
         if ($this->isNew()) {
             $this->collassetParamsOutputs = array();
         } else {
             $criteria->add(flavorParamsOutputPeer::FLAVOR_ASSET_ID, $this->id);
             flavorParamsOutputPeer::addSelectColumns($criteria);
             $this->collassetParamsOutputs = flavorParamsOutputPeer::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(flavorParamsOutputPeer::FLAVOR_ASSET_ID, $this->id);
             flavorParamsOutputPeer::addSelectColumns($criteria);
             if (!isset($this->lastassetParamsOutputCriteria) || !$this->lastassetParamsOutputCriteria->equals($criteria)) {
                 $this->collassetParamsOutputs = flavorParamsOutputPeer::doSelect($criteria, $con);
             }
         }
     }
     $this->lastassetParamsOutputCriteria = $criteria;
     return $this->collassetParamsOutputs;
 }