OSDN Git Service

Merged nested projects branch. Removes limit on subproject nesting (#594).
[redminele/redmine.git] / app / helpers / users_helper.rb
1 # redMine - project management software
2 # Copyright (C) 2006  Jean-Philippe Lang
3 #
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17
18 module UsersHelper
19   def users_status_options_for_select(selected)
20     user_count_by_status = User.count(:group => 'status').to_hash
21     options_for_select([[l(:label_all), ''], 
22                         ["#{l(:status_active)} (#{user_count_by_status[1].to_i})", 1],
23                         ["#{l(:status_registered)} (#{user_count_by_status[2].to_i})", 2],
24                         ["#{l(:status_locked)} (#{user_count_by_status[3].to_i})", 3]], selected)
25   end
26   
27   # Options for the new membership projects combo-box
28   def options_for_membership_project_select(user, projects)
29     options = content_tag('option', "--- #{l(:actionview_instancetag_blank_option)} ---")
30     options << project_tree_options_for_select(projects) do |p|
31       {:disabled => (user.projects.include?(p))}
32     end
33     options
34   end
35   
36   def change_status_link(user)
37     url = {:action => 'edit', :id => user, :page => params[:page], :status => params[:status]}
38     
39     if user.locked?
40       link_to l(:button_unlock), url.merge(:user => {:status => User::STATUS_ACTIVE}), :method => :post, :class => 'icon icon-unlock'
41     elsif user.registered?
42       link_to l(:button_activate), url.merge(:user => {:status => User::STATUS_ACTIVE}), :method => :post, :class => 'icon icon-unlock'
43     elsif user != User.current
44       link_to l(:button_lock), url.merge(:user => {:status => User::STATUS_LOCKED}), :method => :post, :class => 'icon icon-lock'
45     end
46   end
47   
48   def user_settings_tabs
49     tabs = [{:name => 'general', :partial => 'users/general', :label => :label_general},
50             {:name => 'memberships', :partial => 'users/memberships', :label => :label_project_plural}
51             ]
52   end
53 end