Exemple #1
0
 /**
  * @return int
  */
 public function getBlogPostsCounterSinceLatestBlogAccess()
 {
     $c = new Criteria();
     $posts = 0;
     if ($this->getLatestBlogAccess()) {
         $c->add(PcBlogPostPeer::PUBLISHED_AT, $this->getLatestBlogAccess(), Criteria::GREATER_EQUAL);
         $posts = PcBlogPostPeer::doCount($c);
     }
     return $posts;
 }
 /**
  * Returns the number of related PcBlogPost objects.
  *
  * @param      Criteria $criteria
  * @param      boolean $distinct
  * @param      PropelPDO $con
  * @return     int Count of related PcBlogPost objects.
  * @throws     PropelException
  */
 public function countPcBlogPosts(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->collPcBlogPosts === null) {
         if ($this->isNew()) {
             $count = 0;
         } else {
             $criteria->add(PcBlogPostPeer::USER_ID, $this->id);
             $count = PcBlogPostPeer::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(PcBlogPostPeer::USER_ID, $this->id);
             if (!isset($this->lastPcBlogPostCriteria) || !$this->lastPcBlogPostCriteria->equals($criteria)) {
                 $count = PcBlogPostPeer::doCount($criteria, false, $con);
             } else {
                 $count = count($this->collPcBlogPosts);
             }
         } else {
             $count = count($this->collPcBlogPosts);
         }
     }
     return $count;
 }