Moved duplicate #options_for_membership_project_select to ApplicationHelper.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10901 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
4d71446791
commit
65d3bffad7
|
@ -331,6 +331,15 @@ module ApplicationHelper
|
||||||
s.html_safe
|
s.html_safe
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Options for the new membership projects combo-box
|
||||||
|
def options_for_membership_project_select(principal, projects)
|
||||||
|
options = content_tag('option', "--- #{l(:actionview_instancetag_blank_option)} ---")
|
||||||
|
options << project_tree_options_for_select(projects) do |p|
|
||||||
|
{:disabled => principal.projects.include?(p)}
|
||||||
|
end
|
||||||
|
options
|
||||||
|
end
|
||||||
|
|
||||||
# Truncates and returns the string as a single line
|
# Truncates and returns the string as a single line
|
||||||
def truncate_single_line(string, *args)
|
def truncate_single_line(string, *args)
|
||||||
truncate(string.to_s, *args).gsub(%r{[\r\n]+}m, ' ')
|
truncate(string.to_s, *args).gsub(%r{[\r\n]+}m, ' ')
|
||||||
|
|
|
@ -18,15 +18,6 @@
|
||||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
|
||||||
module GroupsHelper
|
module GroupsHelper
|
||||||
# Options for the new membership projects combo-box
|
|
||||||
def options_for_membership_project_select(user, projects)
|
|
||||||
options = content_tag('option', "--- #{l(:actionview_instancetag_blank_option)} ---")
|
|
||||||
options << project_tree_options_for_select(projects) do |p|
|
|
||||||
{:disabled => (user.projects.include?(p))}
|
|
||||||
end
|
|
||||||
options
|
|
||||||
end
|
|
||||||
|
|
||||||
def group_settings_tabs
|
def group_settings_tabs
|
||||||
tabs = [{:name => 'general', :partial => 'groups/general', :label => :label_general},
|
tabs = [{:name => 'general', :partial => 'groups/general', :label => :label_general},
|
||||||
{:name => 'users', :partial => 'groups/users', :label => :label_user_plural},
|
{:name => 'users', :partial => 'groups/users', :label => :label_user_plural},
|
||||||
|
|
|
@ -26,15 +26,6 @@ module UsersHelper
|
||||||
["#{l(:status_locked)} (#{user_count_by_status[3].to_i})", '3']], selected.to_s)
|
["#{l(:status_locked)} (#{user_count_by_status[3].to_i})", '3']], selected.to_s)
|
||||||
end
|
end
|
||||||
|
|
||||||
# Options for the new membership projects combo-box
|
|
||||||
def options_for_membership_project_select(user, projects)
|
|
||||||
options = content_tag('option', "--- #{l(:actionview_instancetag_blank_option)} ---")
|
|
||||||
options << project_tree_options_for_select(projects) do |p|
|
|
||||||
{:disabled => (user.projects.include?(p))}
|
|
||||||
end
|
|
||||||
options
|
|
||||||
end
|
|
||||||
|
|
||||||
def user_mail_notification_options(user)
|
def user_mail_notification_options(user)
|
||||||
user.valid_notification_options.collect {|o| [l(o.last), o.first]}
|
user.valid_notification_options.collect {|o| [l(o.last), o.first]}
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue