Пример #1
0
 /**
  *
  * @return array of PcContactNote
  */
 public function getNotes()
 {
     $c = new Criteria();
     $c->add(PcContactNotePeer::CONTACT_ID, $this->getId());
     $c->addDescendingOrderByColumn(PcContactNotePeer::CREATED_AT);
     return PcContactNotePeer::doSelect($c);
 }
Пример #2
0
 /**
  * Gets an array of PcContactNote 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 PcContact has previously been saved, it will retrieve
  * related PcContactNotes from storage. If this PcContact 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 PcContactNote[]
  * @throws     PropelException
  */
 public function getPcContactNotes($criteria = null, PropelPDO $con = null)
 {
     if ($criteria === null) {
         $criteria = new Criteria(PcContactPeer::DATABASE_NAME);
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collPcContactNotes === null) {
         if ($this->isNew()) {
             $this->collPcContactNotes = array();
         } else {
             $criteria->add(PcContactNotePeer::CONTACT_ID, $this->id);
             PcContactNotePeer::addSelectColumns($criteria);
             $this->collPcContactNotes = PcContactNotePeer::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(PcContactNotePeer::CONTACT_ID, $this->id);
             PcContactNotePeer::addSelectColumns($criteria);
             if (!isset($this->lastPcContactNoteCriteria) || !$this->lastPcContactNoteCriteria->equals($criteria)) {
                 $this->collPcContactNotes = PcContactNotePeer::doSelect($criteria, $con);
             }
         }
     }
     $this->lastPcContactNoteCriteria = $criteria;
     return $this->collPcContactNotes;
 }
 /**
  * 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(PcContactNotePeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(PcContactNotePeer::DATABASE_NAME);
         $criteria->add(PcContactNotePeer::ID, $pks, Criteria::IN);
         $objs = PcContactNotePeer::doSelect($criteria, $con);
     }
     return $objs;
 }