To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / app / helpers / users_helper.rb @ 441:cbce1fd3b1b7
History | View | Annotate | Download (2.7 KB)
| 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 user_mail_notification_options(user) |
| 37 |
user.valid_notification_options.collect {|o| [l(o.last), o.first]}
|
| 38 |
end
|
| 39 |
|
| 40 |
def change_status_link(user) |
| 41 |
url = {:controller => 'users', :action => 'update', :id => user, :page => params[:page], :status => params[:status], :tab => nil}
|
| 42 |
|
| 43 |
if user.locked?
|
| 44 |
link_to l(:button_unlock), url.merge(:user => {:status => User::STATUS_ACTIVE}), :method => :put, :class => 'icon icon-unlock' |
| 45 |
elsif user.registered?
|
| 46 |
link_to l(:button_activate), url.merge(:user => {:status => User::STATUS_ACTIVE}), :method => :put, :class => 'icon icon-unlock' |
| 47 |
elsif user != User.current |
| 48 |
link_to l(:button_lock), url.merge(:user => {:status => User::STATUS_LOCKED}), :method => :put, :class => 'icon icon-lock' |
| 49 |
end
|
| 50 |
end
|
| 51 |
|
| 52 |
def user_settings_tabs |
| 53 |
tabs = [{:name => 'general', :partial => 'users/general', :label => :label_general},
|
| 54 |
{:name => 'memberships', :partial => 'users/memberships', :label => :label_project_plural}
|
| 55 |
] |
| 56 |
if Group.all.any? |
| 57 |
tabs.insert 1, {:name => 'groups', :partial => 'users/groups', :label => :label_group_plural} |
| 58 |
end
|
| 59 |
tabs |
| 60 |
end
|
| 61 |
end
|