예제 #1
0
 public function getLatestPostByQuery()
 {
     $c = new Criteria();
     $c->add(sfSimpleForumPostPeer::FORUM_ID, $this->getId());
     $c->addDescendingOrderByColumn(sfSimpleForumPostPeer::CREATED_AT);
     return sfSimpleForumPostPeer::doSelectOne($c);
 }