Exemplo n.º 1
0
 /**
  * Returns the number of related History objects.
  *
  * @param      Criteria $criteria
  * @param      boolean $distinct
  * @param      PropelPDO $con
  * @return     int Count of related History objects.
  * @throws     PropelException
  */
 public function countHistorys(Criteria $criteria = null, $distinct = false, PropelPDO $con = null)
 {
     if ($criteria === null) {
         $criteria = new Criteria(UserPeer::DATABASE_NAME);
     } else {
         $criteria = clone $criteria;
     }
     if ($distinct) {
         $criteria->setDistinct();
     }
     $count = null;
     if ($this->collHistorys === null) {
         if ($this->isNew()) {
             $count = 0;
         } else {
             $criteria->add(HistoryPeer::USER_ID, $this->id);
             $count = HistoryPeer::doCount($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 count of the collection.
             $criteria->add(HistoryPeer::USER_ID, $this->id);
             if (!isset($this->lastHistoryCriteria) || !$this->lastHistoryCriteria->equals($criteria)) {
                 $count = HistoryPeer::doCount($criteria, $con);
             } else {
                 $count = count($this->collHistorys);
             }
         } else {
             $count = count($this->collHistorys);
         }
     }
     return $count;
 }
 /**
  * Returns the number of related Historys.
  *
  * @param      Criteria $criteria
  * @param      boolean $distinct
  * @param      Connection $con
  * @throws     PropelException
  */
 public function countHistorys($criteria = null, $distinct = false, $con = null)
 {
     // include the Peer class
     include_once 'src/model/whiteboard/om/BaseHistoryPeer.php';
     if ($criteria === null) {
         $criteria = new Criteria();
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     $criteria->add(HistoryPeer::PRODUCTION_ID, $this->getProductionId());
     return HistoryPeer::doCount($criteria, $distinct, $con);
 }