📄 recent_comments_sidebar.rb
字号:
class RecentCommentsSidebar < Sidebar description "Displays the most recent comments." setting :title, "Recent Comments", :label => "Title" setting :count, 5, :label => "Number of Comments" setting :show_username, true, :label => "Show Username", :input_type => :checkbox setting :show_article, true, :label => "Show Article Title", :input_type => :checkbox def comments @comments ||= Comment.find(:all, :limit => count, :conditions => ['published = ?', true], :order => 'created_at DESC') endend
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -