All pastes #2068393 Raw Edit

Stuff

public text v1 · immutable
#2068393 ·published 2011-05-24 13:52 UTC
rendered paste body
  public static function create($conn = null, $class = null)
  {
    $q = new BlogPostQuery($conn);
     
    return $q->select('p.*, u.city_id as user_city')
            ->from('Post p, p.Owner u, p.AnnouncedEvent ae')
    ;
  }
  public function countComments()
  {
    return $this->addSelect('(SELECT count(*) FROM Comment pc WHERE pc.post_id = p.id) as nb_comments');
  }

  public function countBookmarksOld()
  {
    return $this->addSelect('(SELECT count(*) FROM PostBookmark pb WHERE pb.post_id = p.id) as nb_bookmarks');
  }