2011-12-14 23:56:23 +04:00
|
|
|
# encoding: utf-8
|
|
|
|
#
|
2009-12-19 23:07:09 +03:00
|
|
|
# Redmine - project management software
|
2012-05-05 16:56:53 +04:00
|
|
|
# Copyright (C) 2006-2012 Jean-Philippe Lang
|
2007-01-21 14:50:22 +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-05-18 06:45:11 +04:00
|
|
|
#
|
2007-01-21 14:50:22 +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-05-18 06:45:11 +04:00
|
|
|
#
|
2007-01-21 14:50:22 +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.
|
|
|
|
|
|
|
|
module SettingsHelper
|
2008-01-06 23:24:26 +03:00
|
|
|
def administration_settings_tabs
|
|
|
|
tabs = [{:name => 'general', :partial => 'settings/general', :label => :label_general},
|
2009-01-17 12:04:10 +03:00
|
|
|
{:name => 'display', :partial => 'settings/display', :label => :label_display},
|
2008-01-06 23:24:26 +03:00
|
|
|
{:name => 'authentication', :partial => 'settings/authentication', :label => :label_authentication},
|
2008-08-31 16:59:57 +04:00
|
|
|
{:name => 'projects', :partial => 'settings/projects', :label => :label_project_plural},
|
2008-01-06 23:24:26 +03:00
|
|
|
{:name => 'issues', :partial => 'settings/issues', :label => :label_issue_tracking},
|
2009-02-21 14:04:50 +03:00
|
|
|
{:name => 'notifications', :partial => 'settings/notifications', :label => :field_mail_notification},
|
|
|
|
{:name => 'mail_handler', :partial => 'settings/mail_handler', :label => :label_incoming_emails},
|
2009-12-23 20:56:39 +03:00
|
|
|
{:name => 'repositories', :partial => 'settings/repositories', :label => :label_repository_plural}
|
2008-01-06 23:24:26 +03:00
|
|
|
]
|
|
|
|
end
|
2011-05-18 06:45:11 +04:00
|
|
|
|
2009-12-19 23:07:09 +03:00
|
|
|
def setting_select(setting, choices, options={})
|
|
|
|
if blank_text = options.delete(:blank)
|
|
|
|
choices = [[blank_text.is_a?(Symbol) ? l(blank_text) : blank_text, '']] + choices
|
|
|
|
end
|
2011-09-30 02:55:18 +04:00
|
|
|
setting_label(setting, options).html_safe +
|
2011-05-29 14:53:26 +04:00
|
|
|
select_tag("settings[#{setting}]",
|
|
|
|
options_for_select(choices, Setting.send(setting).to_s),
|
2011-09-30 02:55:18 +04:00
|
|
|
options).html_safe
|
2009-12-19 23:07:09 +03:00
|
|
|
end
|
2011-05-18 06:45:11 +04:00
|
|
|
|
2009-12-19 23:07:09 +03:00
|
|
|
def setting_multiselect(setting, choices, options={})
|
|
|
|
setting_values = Setting.send(setting)
|
|
|
|
setting_values = [] unless setting_values.is_a?(Array)
|
2011-05-18 06:45:11 +04:00
|
|
|
|
2012-07-29 16:10:34 +04:00
|
|
|
content_tag("label", l(options[:label] || "setting_#{setting}")) +
|
2011-09-30 02:55:18 +04:00
|
|
|
hidden_field_tag("settings[#{setting}][]", '').html_safe +
|
2009-12-19 23:07:09 +03:00
|
|
|
choices.collect do |choice|
|
2011-05-18 06:45:11 +04:00
|
|
|
text, value = (choice.is_a?(Array) ? choice : [choice, choice])
|
2011-05-29 14:53:26 +04:00
|
|
|
content_tag(
|
|
|
|
'label',
|
|
|
|
check_box_tag(
|
|
|
|
"settings[#{setting}][]",
|
|
|
|
value,
|
2012-07-29 16:04:11 +04:00
|
|
|
Setting.send(setting).include?(value),
|
|
|
|
:id => nil
|
2011-05-29 14:53:26 +04:00
|
|
|
) + text.to_s,
|
2012-10-29 14:06:30 +04:00
|
|
|
:class => (options[:inline] ? 'inline' : 'block')
|
2011-05-29 14:53:26 +04:00
|
|
|
)
|
2011-09-30 02:55:18 +04:00
|
|
|
end.join.html_safe
|
2009-12-19 23:07:09 +03:00
|
|
|
end
|
2011-05-18 06:45:11 +04:00
|
|
|
|
2009-12-19 23:07:09 +03:00
|
|
|
def setting_text_field(setting, options={})
|
2011-09-30 02:55:18 +04:00
|
|
|
setting_label(setting, options).html_safe +
|
|
|
|
text_field_tag("settings[#{setting}]", Setting.send(setting), options).html_safe
|
2009-12-19 23:07:09 +03:00
|
|
|
end
|
2011-05-18 06:45:11 +04:00
|
|
|
|
2009-12-19 23:07:09 +03:00
|
|
|
def setting_text_area(setting, options={})
|
2011-09-30 02:55:18 +04:00
|
|
|
setting_label(setting, options).html_safe +
|
|
|
|
text_area_tag("settings[#{setting}]", Setting.send(setting), options).html_safe
|
2009-12-19 23:07:09 +03:00
|
|
|
end
|
2011-05-18 06:45:11 +04:00
|
|
|
|
2009-12-19 23:07:09 +03:00
|
|
|
def setting_check_box(setting, options={})
|
2011-09-30 02:55:18 +04:00
|
|
|
setting_label(setting, options).html_safe +
|
2012-07-29 16:04:11 +04:00
|
|
|
hidden_field_tag("settings[#{setting}]", 0, :id => nil).html_safe +
|
2011-09-30 02:55:18 +04:00
|
|
|
check_box_tag("settings[#{setting}]", 1, Setting.send("#{setting}?"), options).html_safe
|
2009-12-19 23:07:09 +03:00
|
|
|
end
|
2011-05-18 06:45:11 +04:00
|
|
|
|
2009-12-19 23:07:09 +03:00
|
|
|
def setting_label(setting, options={})
|
|
|
|
label = options.delete(:label)
|
2012-07-29 16:08:10 +04:00
|
|
|
label != false ? label_tag("settings_#{setting}", l(label || "setting_#{setting}")).html_safe : ''
|
2009-12-19 23:07:09 +03:00
|
|
|
end
|
2010-09-29 01:09:06 +04:00
|
|
|
|
|
|
|
# Renders a notification field for a Redmine::Notifiable option
|
|
|
|
def notification_field(notifiable)
|
|
|
|
return content_tag(:label,
|
|
|
|
check_box_tag('settings[notified_events][]',
|
|
|
|
notifiable.name,
|
2012-07-29 16:04:11 +04:00
|
|
|
Setting.notified_events.include?(notifiable.name), :id => nil).html_safe +
|
2011-09-30 02:55:18 +04:00
|
|
|
l_or_humanize(notifiable.name, :prefix => 'label_').html_safe,
|
|
|
|
:class => notifiable.parent.present? ? "parent" : '').html_safe
|
2010-09-29 01:09:06 +04:00
|
|
|
end
|
2012-10-10 21:38:17 +04:00
|
|
|
|
|
|
|
def cross_project_subtasks_options
|
|
|
|
options = [
|
|
|
|
[:label_disabled, ''],
|
|
|
|
[:label_cross_project_system, 'system'],
|
|
|
|
[:label_cross_project_tree, 'tree'],
|
|
|
|
[:label_cross_project_hierarchy, 'hierarchy'],
|
|
|
|
[:label_cross_project_descendants, 'descendants']
|
|
|
|
]
|
|
|
|
|
|
|
|
options.map {|label, value| [l(label), value.to_s]}
|
|
|
|
end
|
2007-01-21 14:50:22 +03:00
|
|
|
end
|