You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

users_helper.rb 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # encoding: utf-8
  2. #
  3. # Redmine - project management software
  4. # Copyright (C) 2006-2013 Jean-Philippe Lang
  5. #
  6. # This program is free software; you can redistribute it and/or
  7. # modify it under the terms of the GNU General Public License
  8. # as published by the Free Software Foundation; either version 2
  9. # of the License, or (at your option) any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License
  17. # along with this program; if not, write to the Free Software
  18. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  19. module UsersHelper
  20. def users_status_options_for_select(selected)
  21. user_count_by_status = User.count(:group => 'status').to_hash
  22. options_for_select([[l(:label_all), ''],
  23. ["#{l(:status_active)} (#{user_count_by_status[1].to_i})", '1'],
  24. ["#{l(:status_registered)} (#{user_count_by_status[2].to_i})", '2'],
  25. ["#{l(:status_locked)} (#{user_count_by_status[3].to_i})", '3']], selected.to_s)
  26. end
  27. def user_mail_notification_options(user)
  28. user.valid_notification_options.collect {|o| [l(o.last), o.first]}
  29. end
  30. def change_status_link(user)
  31. url = {:controller => 'users', :action => 'update', :id => user, :page => params[:page], :status => params[:status], :tab => nil}
  32. if user.locked?
  33. link_to l(:button_unlock), url.merge(:user => {:status => User::STATUS_ACTIVE}), :method => :put, :class => 'icon icon-unlock'
  34. elsif user.registered?
  35. link_to l(:button_activate), url.merge(:user => {:status => User::STATUS_ACTIVE}), :method => :put, :class => 'icon icon-unlock'
  36. elsif user != User.current
  37. link_to l(:button_lock), url.merge(:user => {:status => User::STATUS_LOCKED}), :method => :put, :class => 'icon icon-lock'
  38. end
  39. end
  40. def user_settings_tabs
  41. tabs = [{:name => 'general', :partial => 'users/general', :label => :label_general},
  42. {:name => 'memberships', :partial => 'users/memberships', :label => :label_project_plural}
  43. ]
  44. if Group.all.any?
  45. tabs.insert 1, {:name => 'groups', :partial => 'users/groups', :label => :label_group_plural}
  46. end
  47. tabs
  48. end
  49. end