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