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 @ 912:5e80956cc792
History | View | Annotate | Download (2.71 KB)
| 1 | 909:cbb26bc654de | Chris | # encoding: utf-8
|
|---|---|---|---|
| 2 | #
|
||
| 3 | # Redmine - project management software
|
||
| 4 | # Copyright (C) 2006-2011 Jean-Philippe Lang
|
||
| 5 | 0:513646585e45 | Chris | #
|
| 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 | 909:cbb26bc654de | Chris | #
|
| 11 | 0:513646585e45 | Chris | # 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 | 909:cbb26bc654de | Chris | #
|
| 16 | 0:513646585e45 | Chris | # 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 | |||
| 20 | module UsersHelper |
||
| 21 | def users_status_options_for_select(selected) |
||
| 22 | user_count_by_status = User.count(:group => 'status').to_hash |
||
| 23 | 909:cbb26bc654de | Chris | options_for_select([[l(:label_all), ''], |
| 24 | 0:513646585e45 | Chris | ["#{l(:status_active)} (#{user_count_by_status[1].to_i})", 1], |
| 25 | ["#{l(:status_registered)} (#{user_count_by_status[2].to_i})", 2], |
||
| 26 | ["#{l(:status_locked)} (#{user_count_by_status[3].to_i})", 3]], selected) |
||
| 27 | end
|
||
| 28 | 909:cbb26bc654de | Chris | |
| 29 | 0:513646585e45 | Chris | # Options for the new membership projects combo-box
|
| 30 | def options_for_membership_project_select(user, projects) |
||
| 31 | options = content_tag('option', "--- #{l(:actionview_instancetag_blank_option)} ---") |
||
| 32 | options << project_tree_options_for_select(projects) do |p|
|
||
| 33 | {:disabled => (user.projects.include?(p))}
|
||
| 34 | end
|
||
| 35 | options |
||
| 36 | end
|
||
| 37 | 909:cbb26bc654de | Chris | |
| 38 | 119:8661b858af72 | Chris | def user_mail_notification_options(user) |
| 39 | user.valid_notification_options.collect {|o| [l(o.last), o.first]}
|
||
| 40 | end
|
||
| 41 | 909:cbb26bc654de | Chris | |
| 42 | 0:513646585e45 | Chris | def change_status_link(user) |
| 43 | 37:94944d00e43c | chris | url = {:controller => 'users', :action => 'update', :id => user, :page => params[:page], :status => params[:status], :tab => nil}
|
| 44 | 909:cbb26bc654de | Chris | |
| 45 | 0:513646585e45 | Chris | if user.locked?
|
| 46 | 37:94944d00e43c | chris | link_to l(:button_unlock), url.merge(:user => {:status => User::STATUS_ACTIVE}), :method => :put, :class => 'icon icon-unlock' |
| 47 | 0:513646585e45 | Chris | elsif user.registered?
|
| 48 | 37:94944d00e43c | chris | link_to l(:button_activate), url.merge(:user => {:status => User::STATUS_ACTIVE}), :method => :put, :class => 'icon icon-unlock' |
| 49 | 0:513646585e45 | Chris | elsif user != User.current |
| 50 | 37:94944d00e43c | chris | link_to l(:button_lock), url.merge(:user => {:status => User::STATUS_LOCKED}), :method => :put, :class => 'icon icon-lock' |
| 51 | 0:513646585e45 | Chris | end
|
| 52 | end
|
||
| 53 | 909:cbb26bc654de | Chris | |
| 54 | 0:513646585e45 | Chris | def user_settings_tabs |
| 55 | tabs = [{:name => 'general', :partial => 'users/general', :label => :label_general},
|
||
| 56 | {:name => 'memberships', :partial => 'users/memberships', :label => :label_project_plural}
|
||
| 57 | ] |
||
| 58 | if Group.all.any? |
||
| 59 | tabs.insert 1, {:name => 'groups', :partial => 'users/groups', :label => :label_group_plural} |
||
| 60 | end
|
||
| 61 | tabs |
||
| 62 | end
|
||
| 63 | end |