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