Пример #1
0
 /**
  * Get the number of down-votes
  *
  * @return int The number of down-votes
  */
 public function getDownVotes()
 {
     $c = new Criteria();
     $c->add(DoucheVotePeer::DOUCHE_ID, $this->getId());
     $c->add(DoucheVotePeer::VOTE, -1);
     return DoucheVotePeer::doCount($c);
 }
Пример #2
0
 /**
  * Returns the number of related DoucheVote objects.
  *
  * @param      Criteria $criteria
  * @param      boolean $distinct
  * @param      PropelPDO $con
  * @return     int Count of related DoucheVote objects.
  * @throws     PropelException
  */
 public function countDoucheVotes(Criteria $criteria = null, $distinct = false, PropelPDO $con = null)
 {
     if ($criteria === null) {
         $criteria = new Criteria(DouchePeer::DATABASE_NAME);
     } else {
         $criteria = clone $criteria;
     }
     if ($distinct) {
         $criteria->setDistinct();
     }
     $count = null;
     if ($this->collDoucheVotes === null) {
         if ($this->isNew()) {
             $count = 0;
         } else {
             $criteria->add(DoucheVotePeer::DOUCHE_ID, $this->id);
             $count = DoucheVotePeer::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(DoucheVotePeer::DOUCHE_ID, $this->id);
             if (!isset($this->lastDoucheVoteCriteria) || !$this->lastDoucheVoteCriteria->equals($criteria)) {
                 $count = DoucheVotePeer::doCount($criteria, false, $con);
             } else {
                 $count = count($this->collDoucheVotes);
             }
         } else {
             $count = count($this->collDoucheVotes);
         }
     }
     return $count;
 }