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

Ajax

开发平台:

Others

  1. class AuthorsSidebar < Sidebar
  2.   display_name "Authors"
  3.   description "Displays a list of authors ordered by name with links to their articles and profile"
  4.   setting :count, true,  :label => 'Show articles number',      :input_type => :checkbox
  5.   def authors
  6.     @authors = User.find(:all, :conditions => {:state => 'active'}, :order => 'name')
  7.   end
  8. end