\n"; } public static function photo_bottom($theme) { return comment::block($theme, true); } public static function admin_dashboard_blocks($theme) { $block = new Block(); $block->id = "gRecentComments"; $block->title = _("Recent Comments"); $block->content = new View("admin_block_recent_comments.html"); $block->content->comments = ORM::factory("comment")->orderby("created", "DESC")->limit(5)->find_all(); return $block; } }