To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / helpers / settings_helper.rb @ 1298:4f746d8966dd

History | View | Annotate | Download (4.47 KB)

1 909:cbb26bc654de Chris
# encoding: utf-8
2
#
3 0:513646585e45 Chris
# Redmine - project management software
4 1295:622f24f53b42 Chris
# Copyright (C) 2006-2013  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 441:cbce1fd3b1b7 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 441:cbce1fd3b1b7 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 SettingsHelper
21
  def administration_settings_tabs
22
    tabs = [{:name => 'general', :partial => 'settings/general', :label => :label_general},
23
            {:name => 'display', :partial => 'settings/display', :label => :label_display},
24
            {:name => 'authentication', :partial => 'settings/authentication', :label => :label_authentication},
25
            {:name => 'projects', :partial => 'settings/projects', :label => :label_project_plural},
26
            {:name => 'issues', :partial => 'settings/issues', :label => :label_issue_tracking},
27
            {:name => 'notifications', :partial => 'settings/notifications', :label => :field_mail_notification},
28
            {:name => 'mail_handler', :partial => 'settings/mail_handler', :label => :label_incoming_emails},
29
            {:name => 'repositories', :partial => 'settings/repositories', :label => :label_repository_plural}
30
            ]
31
  end
32 441:cbce1fd3b1b7 Chris
33 0:513646585e45 Chris
  def setting_select(setting, choices, options={})
34
    if blank_text = options.delete(:blank)
35
      choices = [[blank_text.is_a?(Symbol) ? l(blank_text) : blank_text, '']] + choices
36
    end
37 909:cbb26bc654de Chris
    setting_label(setting, options).html_safe +
38 441:cbce1fd3b1b7 Chris
      select_tag("settings[#{setting}]",
39
                 options_for_select(choices, Setting.send(setting).to_s),
40 909:cbb26bc654de Chris
                 options).html_safe
41 0:513646585e45 Chris
  end
42 441:cbce1fd3b1b7 Chris
43 0:513646585e45 Chris
  def setting_multiselect(setting, choices, options={})
44
    setting_values = Setting.send(setting)
45
    setting_values = [] unless setting_values.is_a?(Array)
46 441:cbce1fd3b1b7 Chris
47 1115:433d4f72a19b Chris
    content_tag("label", l(options[:label] || "setting_#{setting}")) +
48 909:cbb26bc654de Chris
      hidden_field_tag("settings[#{setting}][]", '').html_safe +
49 0:513646585e45 Chris
      choices.collect do |choice|
50 441:cbce1fd3b1b7 Chris
        text, value = (choice.is_a?(Array) ? choice : [choice, choice])
51
        content_tag(
52
          'label',
53
          check_box_tag(
54
             "settings[#{setting}][]",
55
             value,
56 1295:622f24f53b42 Chris
             setting_values.include?(value),
57 1115:433d4f72a19b Chris
             :id => nil
58 441:cbce1fd3b1b7 Chris
           ) + text.to_s,
59 1115:433d4f72a19b Chris
          :class => (options[:inline] ? 'inline' : 'block')
60 441:cbce1fd3b1b7 Chris
         )
61 909:cbb26bc654de Chris
      end.join.html_safe
62 0:513646585e45 Chris
  end
63 441:cbce1fd3b1b7 Chris
64 0:513646585e45 Chris
  def setting_text_field(setting, options={})
65 909:cbb26bc654de Chris
    setting_label(setting, options).html_safe +
66
      text_field_tag("settings[#{setting}]", Setting.send(setting), options).html_safe
67 0:513646585e45 Chris
  end
68 441:cbce1fd3b1b7 Chris
69 0:513646585e45 Chris
  def setting_text_area(setting, options={})
70 909:cbb26bc654de Chris
    setting_label(setting, options).html_safe +
71
      text_area_tag("settings[#{setting}]", Setting.send(setting), options).html_safe
72 0:513646585e45 Chris
  end
73 441:cbce1fd3b1b7 Chris
74 0:513646585e45 Chris
  def setting_check_box(setting, options={})
75 909:cbb26bc654de Chris
    setting_label(setting, options).html_safe +
76 1115:433d4f72a19b Chris
      hidden_field_tag("settings[#{setting}]", 0, :id => nil).html_safe +
77 909:cbb26bc654de Chris
        check_box_tag("settings[#{setting}]", 1, Setting.send("#{setting}?"), options).html_safe
78 0:513646585e45 Chris
  end
79 441:cbce1fd3b1b7 Chris
80 0:513646585e45 Chris
  def setting_label(setting, options={})
81
    label = options.delete(:label)
82 1115:433d4f72a19b Chris
    label != false ? label_tag("settings_#{setting}", l(label || "setting_#{setting}")).html_safe : ''
83 0:513646585e45 Chris
  end
84 37:94944d00e43c chris
85
  # Renders a notification field for a Redmine::Notifiable option
86
  def notification_field(notifiable)
87
    return content_tag(:label,
88
                       check_box_tag('settings[notified_events][]',
89
                                     notifiable.name,
90 1115:433d4f72a19b Chris
                                     Setting.notified_events.include?(notifiable.name), :id => nil).html_safe +
91 909:cbb26bc654de Chris
                         l_or_humanize(notifiable.name, :prefix => 'label_').html_safe,
92
                       :class => notifiable.parent.present? ? "parent" : '').html_safe
93 37:94944d00e43c chris
  end
94 1115:433d4f72a19b Chris
95
  def cross_project_subtasks_options
96
    options = [
97
      [:label_disabled, ''],
98
      [:label_cross_project_system, 'system'],
99
      [:label_cross_project_tree, 'tree'],
100
      [:label_cross_project_hierarchy, 'hierarchy'],
101
      [:label_cross_project_descendants, 'descendants']
102
    ]
103
104
    options.map {|label, value| [l(label), value.to_s]}
105
  end
106 0:513646585e45 Chris
end