示例#1
0
 /**
  * Gets an array of NotaPedido 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 sfGuardUser has previously been saved, it will retrieve
  * related NotaPedidosRelatedByAutorizaId from storage. If this sfGuardUser 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 NotaPedido[]
  * @throws     PropelException
  */
 public function getNotaPedidosRelatedByAutorizaId($criteria = null, PropelPDO $con = null)
 {
     if ($criteria === null) {
         $criteria = new Criteria(sfGuardUserPeer::DATABASE_NAME);
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collNotaPedidosRelatedByAutorizaId === null) {
         if ($this->isNew()) {
             $this->collNotaPedidosRelatedByAutorizaId = array();
         } else {
             $criteria->add(NotaPedidoPeer::AUTORIZA_ID, $this->id);
             NotaPedidoPeer::addSelectColumns($criteria);
             $this->collNotaPedidosRelatedByAutorizaId = NotaPedidoPeer::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(NotaPedidoPeer::AUTORIZA_ID, $this->id);
             NotaPedidoPeer::addSelectColumns($criteria);
             if (!isset($this->lastNotaPedidoRelatedByAutorizaIdCriteria) || !$this->lastNotaPedidoRelatedByAutorizaIdCriteria->equals($criteria)) {
                 $this->collNotaPedidosRelatedByAutorizaId = NotaPedidoPeer::doSelect($criteria, $con);
             }
         }
     }
     $this->lastNotaPedidoRelatedByAutorizaIdCriteria = $criteria;
     return $this->collNotaPedidosRelatedByAutorizaId;
 }