Esempio n. 1
0
 /**
  *
  * @return int
  */
 public function getNotesCount()
 {
     $c = new Criteria();
     $c->add(PcNotePeer::CREATOR_ID, $this->getId());
     return PcNotePeer::doCount($c);
 }
Esempio n. 2
0
 /**
  * Returns the number of related PcNote objects.
  *
  * @param      Criteria $criteria
  * @param      boolean $distinct
  * @param      PropelPDO $con
  * @return     int Count of related PcNote objects.
  * @throws     PropelException
  */
 public function countPcNotes(Criteria $criteria = null, $distinct = false, PropelPDO $con = null)
 {
     if ($criteria === null) {
         $criteria = new Criteria(PcUserPeer::DATABASE_NAME);
     } else {
         $criteria = clone $criteria;
     }
     if ($distinct) {
         $criteria->setDistinct();
     }
     $count = null;
     if ($this->collPcNotes === null) {
         if ($this->isNew()) {
             $count = 0;
         } else {
             $criteria->add(PcNotePeer::CREATOR_ID, $this->id);
             $count = PcNotePeer::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(PcNotePeer::CREATOR_ID, $this->id);
             if (!isset($this->lastPcNoteCriteria) || !$this->lastPcNoteCriteria->equals($criteria)) {
                 $count = PcNotePeer::doCount($criteria, false, $con);
             } else {
                 $count = count($this->collPcNotes);
             }
         } else {
             $count = count($this->collPcNotes);
         }
     }
     return $count;
 }