2011-10-29 16:19:11 +04:00
|
|
|
#-- encoding: UTF-8
|
2011-05-30 00:11:52 +04:00
|
|
|
#-- copyright
|
|
|
|
# ChiliProject is a project management system.
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2012-01-03 23:36:40 +04:00
|
|
|
# Copyright (C) 2010-2012 the ChiliProject Team
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04: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-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
|
|
#++
|
|
|
|
|
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-05-30 22:52:25 +04:00
|
|
|
options_for_select([[l(:label_all), ''],
|
2008-08-12 01:10:24 +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)
|
2007-03-18 23:44:33 +03:00
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2008-05-01 17:50:39 +04:00
|
|
|
# Options for the new membership projects combo-box
|
2009-01-24 14:31:15 +03:00
|
|
|
def options_for_membership_project_select(user, projects)
|
2008-05-01 17:50:39 +04:00
|
|
|
options = content_tag('option', "--- #{l(:actionview_instancetag_blank_option)} ---")
|
2009-01-24 14:31:15 +03:00
|
|
|
options << project_tree_options_for_select(projects) do |p|
|
|
|
|
{:disabled => (user.projects.include?(p))}
|
2008-05-01 17:50:39 +04:00
|
|
|
end
|
|
|
|
options
|
|
|
|
end
|
2011-05-30 22:52:25 +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-05-30 22:52:25 +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-05-30 22:52:25 +04:00
|
|
|
|
2011-08-02 04:04:47 +04:00
|
|
|
links = []
|
2008-04-06 17:15:09 +04:00
|
|
|
if user.locked?
|
2011-08-02 04:04:47 +04:00
|
|
|
links << 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?
|
2011-08-02 04:04:47 +04:00
|
|
|
links << 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
|
2011-08-02 04:04:47 +04:00
|
|
|
links << 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
|
2011-08-02 04:04:47 +04:00
|
|
|
|
|
|
|
if user.deletable?
|
|
|
|
links << link_to(
|
|
|
|
l(:button_delete), {:controller => 'users', :action => 'destroy', :id => user},
|
|
|
|
:method => :delete,
|
|
|
|
:confirm => l(:text_are_you_sure),
|
|
|
|
:title => l(:button_delete),
|
|
|
|
:class => 'icon icon-del'
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
links.join(" ")
|
2008-04-06 17:15:09 +04:00
|
|
|
end
|
2011-05-30 22:52:25 +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
|