예제 #1
0
파일: front.php 프로젝트: samsoir/twongo
 public function action_index()
 {
     $db = mongoconnection::instance();
     $this->request->response->body = (string) View::factory('front/index')->set('tweets', tweet::latest(5));
 }
예제 #2
0
파일: tweet.php 프로젝트: samsoir/twongo
 public static function latest($limit = 5)
 {
     $db = mongoconnection::instance();
     return $db->tweets->find()->limit($limit);
 }