Show
Ignore:
Timestamp:
06/01/06 12:16:40 (6 years ago)
Author:
francois
Message:

refactored sidebar module and added latest comments in sidebar (+feed)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/model/SnippetCommentPeer.php

    r2 r7  
    2121class SnippetCommentPeer extends BaseSnippetCommentPeer { 
    2222 
     23  public function getLatests($max) 
     24  { 
     25    $c = new Criteria(); 
     26    $c->addDescendingOrderByColumn(self::CREATED_AT); 
     27    $c->setLimit($max); 
     28    return self::doSelect($c);  
     29  } 
     30 
    2331} // SnippetCommentPeer