Save settings on POST, and add support for a textarea settingType.
[bugdar.git] / admin / setting.php
1 <?php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Bugdar
5 || # Copyright (c)2002-2007 Blue Static
6 || #
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version 2 of the License.
10 || #
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 || # more details.
15 || #
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
21
22 require_once('./global.php');
23 require_once('./includes/class_sort.php');
24 require_once('./includes/functions_datastore.php');
25
26 NavLinks::optionsPages();
27 $navigator->set_focus('tab', 'options', null);
28 $navigator->set_focus('link', 'options-pages-settings', 'options-pages');
29
30 if (!can_perform('canadmintools'))
31 {
32 admin_login();
33 }
34
35 // ###################################################################
36
37 if (empty($_REQUEST['do']))
38 {
39 $_REQUEST['do'] = 'modify';
40 }
41
42 // ###################################################################
43
44 if ($_POST['do'] == 'update')
45 {
46 $updates = array();
47 foreach ($bugsys->in['setting'] AS $varname => $value)
48 {
49 if (is_array($value))
50 {
51 if ($varname == 'columnoptions')
52 {
53 $value = serialize($value);
54 }
55 else
56 {
57 $value = implode(',', $value);
58 }
59 }
60
61 $updates[] = "('" . $bugsys->escape($varname) . "', '" . $bugsys->escape($value) . "')";
62 }
63
64 $db->query("REPLACE INTO " . TABLE_PREFIX . "setting (varname, value) VALUES " . implode(',', $updates));
65
66 build_settings();
67
68 $admin->redirect('setting.php');
69 }
70
71 // ###################################################################
72
73 if ($_REQUEST['do'] == 'modify')
74 {
75 $admin->page_start(T('Settings'));
76
77 $admin->form_start('setting.php', 'update');
78
79 $IS_SETTINGS = true;
80
81 // ###################################################################
82 $admin->table_start();
83 $admin->table_head(T('General Options'));
84
85 // authmethod
86 $admin->row_span(T('Authentication Method'), 'thead');
87 $methods = $funct->scandir('./includes/auth/');
88 foreach ($methods[''] AS $path)
89 {
90 if (preg_match('#auth_(.*)\.php#', $path, $matches))
91 {
92 $admin->list_item(ucwords(str_replace('_', ' ', $matches[1])), $matches[1], ($matches[1] == $bugsys->options['authmethod']));
93 }
94 }
95 $admin->row_list(T('The authentication class to use to validate cookie data and longins. You may need to edit the actual file for certain authentication systems.'), 'setting[authmethod]');
96
97 // defaulttimezone
98 $admin->row_span(T('Default Time Zone'), 'thead');
99 $admin->row_text(T('This controls the time zone that all unregistered users view the tracker with.'), construct_option_select('setting[defaulttimezone]', $bugsys->datef->fetch_timezone_list(), $bugsys->options['defaulttimezone']), $bugsys->options['defaulttimezone']);
100
101 // defaultlanguage
102 $admin->row_span(T('Default Language'), 'thead');
103 $admin->row_text(T('You can set the default language that all new users (and guests) will use.'), construct_option_select('setting[defaultlanguage]', Bugdar::$datastore['language'], $bugsys->options['defaultlanguage'], 'languageid', 'title'), $bugsys->options['defaultlanguage']);
104
105 $admin->table_end();
106
107 // ###################################################################
108 $admin->table_start();
109 $admin->table_head(T('Bug Reporting Options'));
110
111 // allowhtml
112 $admin->row_span(T('Allow HTML in Bug Reports'), 'thead');
113 $admin->row_yesno(T('Set this to <em>yes</em> if you want to allow users to post raw HTML in their bug reports. This is <strong>very</strong> dangerous and it is not recommended.'), 'setting[allowhtml]', $bugsys->options['allowhtml']);
114
115 // defaultseverity
116 $admin->row_span(T('Default Severity'), 'thead');
117 $admin->row_text(T('The default severity that is selected when creating a new bug report.'), construct_option_select('setting[defaultseverity]', Bugdar::$datastore['severity'], $bugsys->options['defaultseverity'], 'severityid', 'severity'));
118
119 // defaultpriority
120 $admin->row_span(T('Default Priority'), 'thead');
121 $admin->row_text(T('The default priority that will be selected when creating a new bug report. Depending on your permission setup, the user may not be able to set this in a new report so this will act as the value.'), construct_option_select('setting[defaultpriority]', Bugdar::$datastore['priority'], $bugsys->options['defaultpriority'], 'priorityid', 'priority'));
122
123 // defaultstatus
124 $admin->row_span(T('Default Status'), 'thead');
125 $admin->row_text(T('The default default that is selected when creating a new bug report. If a user can not assign a status, this will be the one inserted into the database.'), construct_option_select('setting[defaultstatus]', Bugdar::$datastore['status'], $bugsys->options['defaultstatus'], 'statusid', 'status'));
126
127 // defaultresolve
128 $admin->row_span(T('Default Resolution'), 'thead');
129 $admin->row_text(T('This is the default bug resolution. If a user is not able to change this field, setting this will act as the default value.'), construct_option_select('setting[defaultresolve]', Bugdar::$datastore['resolution'], $bugsys->options['defaultresolve'], 'resolutionid', 'resolution'));
130
131 // defaultassign
132 $admin->row_span(T('Default Bug Assignment'), 'thead');
133 $admin->row_text(T('This is the default developer new bugs will be assigned to. If a user does not have permisssion to assign bugs, this will be the default. If you don\'t want any default assignment, leave this as <em>Not Selected</em>.'), construct_option_select('setting[defaultassign]', Bugdar::$datastore['assignto'], $bugsys->options['defaultassign'], 'userid', 'displayname', 0));
134
135
136 $admin->table_end();
137
138 // ###################################################################
139 $admin->table_start();
140 $admin->table_head(T('Bug Listing Display Options'));
141
142 // hidestatuses
143 $admin->row_span(T('Hide Statuses on Bug Listings'), 'thead');
144 $admin->row_text(T('Here you can specify which statuses to hide on the bug list displays. Users have options in their controls to change this from these values, and this does not affect searches or the favorites list.'), construct_option_select('setting[hidestatuses]', Bugdar::$datastore['status'], $bugsys->options['hidestatuses'], 'statusid', 'status', 0, true));
145
146 // defaultsortkey
147 $admin->row_span(T('Default Sort Column'), 'thead');
148 $admin->row_text(T('Select the column to sort bugs by on listings. This is only a default setting which users can override in their preferences.'), construct_option_select('setting[defaultsortkey]', ListSorter::fetch_by_text(false), $bugsys->options['defaultsortkey']));
149
150 // defaultsortas
151 $admin->row_span(T('Default Sort Direction'), 'thead');
152 $admin->row_text(T('Specify the default direction to sort bugs in the selected column. This works with and follows the same rules as the Sort Column.'), construct_option_select('setting[defaultsortas]', ListSorter::fetch_as_text(false), $bugsys->options['defaultsortas']));
153
154 // columnoptions
155 $admin->row_span(T('Default Column Ordering Options'), 'thead');
156 $admin->row_text(T('Specify the order of the columns for bug listings. The value 0 disables the display of a column and if two or more columns have the same position number, they will be displayed in the same column.'), ConstructColumnOptionsSetting());
157
158 $admin->table_end();
159
160 // ###################################################################
161 $admin->table_start();
162 $admin->table_head(T('Pagination Options'));
163
164 // defaultpp
165 $admin->row_span(T('Default Per-Page Amount'), 'thead');
166 $admin->row_input(T('The number of items (e.g. bugs) to be displayed on a page by default. The user will have the option of over-riding these values.'), 'setting[defaultpp]', $bugsys->options['defaultpp']);
167
168 // maxpp
169 $admin->row_span(T('Maximum Per-Page Value'), 'thead');
170 $admin->row_input(T('To prevent your server from experiencing load problems, set the maximum per page limit. Specifying a value here will make sure any user-entered value will not be higher than this, preventing server load problems.'), 'setting[maxpp]', $bugsys->options['maxpp']);
171
172 // pagelinks
173 $admin->row_span(T('Number of Page Links'), 'thead');
174 $admin->row_input(T('The number of pages that will appear in the page navigation system on either side of the current page. Set this to 0 to display all pages.'), 'setting[pagelinks]', $bugsys->options['pagelinks']);
175
176 $admin->table_end();
177
178 // ###################################################################
179 if (DEVDEBUG)
180 {
181 $admin->table_start();
182 $admin->table_head('Untouchables');
183
184 // trackerversion
185 $admin->row_span('Version Number', 'thead');
186 $admin->row_input('Version Number', 'setting[trackerversion]', $bugsys->options['trackerversion']);
187 }
188
189 // ###################################################################
190 $admin->table_start();
191 $admin->row_submit();
192 $admin->table_end();
193 $admin->form_end();
194
195 $admin->page_end();
196 }
197
198 // ###################################################################
199 /**
200 * Helper function for the $bugsys->options['columnoptions'] setting
201 *
202 * @return string Setting HTML code
203 */
204 function ConstructColumnOptionsSetting()
205 {
206 global $bugsys;
207
208 $array = ($bugsys->options['columnoptions'] == null ? array('bugid' => 1, 'summary' => 2, 'userid' => 2, 'product' => 3, 'version' => 3, 'component' => 0, 'status' => 4, 'resolution' => 4, 'priority' => 5, 'severity' => 5, 'lastpost' => 6, 'votes' => 0) : $bugsys->options['columnoptions']);
209
210 $return = '<table cellspacing="2" cellpadding="1" border="0">';
211 foreach ($bugsys->columns AS $column => $mask)
212 {
213 $return .= '<tr><td><strong>' . $bugsys->columnNames["$column"] . '</strong></td><td><input type="text" name="setting[columnoptions][' . $column . ']" size="2" maxlength="2" class="input" value="' . intval($array["$column"]) . '" /></td></tr>';
214 }
215 $return .= '</table>';
216 return $return;
217 }
218