コード例 #1
0
 /**
  * Returns the number of related AppBlogsFormsEntries objects.
  *
  * @param      Criteria $criteria
  * @param      boolean $distinct
  * @param      PropelPDO $con
  * @return     int Count of related AppBlogsFormsEntries objects.
  * @throws     PropelException
  */
 public function countAppBlogsFormsEntriess(Criteria $criteria = null, $distinct = false, PropelPDO $con = null)
 {
     if ($criteria === null) {
         $criteria = new Criteria(AppBlogsFormsPeer::DATABASE_NAME);
     } else {
         $criteria = clone $criteria;
     }
     if ($distinct) {
         $criteria->setDistinct();
     }
     $count = null;
     if ($this->collAppBlogsFormsEntriess === null) {
         if ($this->isNew()) {
             $count = 0;
         } else {
             $criteria->add(AppBlogsFormsEntriesPeer::FORM_ID, $this->id);
             $count = AppBlogsFormsEntriesPeer::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(AppBlogsFormsEntriesPeer::FORM_ID, $this->id);
             if (!isset($this->lastAppBlogsFormsEntriesCriteria) || !$this->lastAppBlogsFormsEntriesCriteria->equals($criteria)) {
                 $count = AppBlogsFormsEntriesPeer::doCount($criteria, false, $con);
             } else {
                 $count = count($this->collAppBlogsFormsEntriess);
             }
         } else {
             $count = count($this->collAppBlogsFormsEntriess);
         }
     }
     return $count;
 }