category_sidebar.rb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:0k
源码类别:

Ajax

开发平台:

Others

  1. class CategorySidebar < Sidebar
  2.   display_name "Categories"
  3.   description "List of categories for this blog"
  4.   setting :count, true,  :label => 'Show article count',    :input_type => :checkbox
  5.   setting :empty, false, :label => 'Show empty categories', :input_type => :checkbox
  6.   def categories
  7.     @categories ||= Category.find_all_with_article_counters
  8.   end
  9. end