Reply to original recipient functionality should be consistent, even if original...
[squirrelmail.git] / src / options_highlight.php
1 <?php
2
3 /**
4 * options_highlight.php
5 *
6 * Displays message highlighting options
7 *
8 * @copyright 1999-2012 The SquirrelMail Project Team
9 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
10 * @version $Id$
11 * @package squirrelmail
12 * @subpackage prefs
13 */
14
15 /** This is the options_highlight page */
16 define('PAGE_NAME', 'options_highlight');
17
18 /**
19 * Include the SquirrelMail initialization file.
20 */
21 require('../include/init.php');
22
23 // include_once(SM_PATH . 'functions/imap.php');
24 require_once(SM_PATH . 'functions/forms.php');
25
26 /* get globals */
27 sqGetGlobalVar('action', $action);
28 sqGetGlobalVar('theid', $theid);
29 sqGetGlobalVar('identname', $identname);
30 sqGetGlobalVar('newcolor_choose', $newcolor_choose);
31 sqGetGlobalVar('newcolor_input', $newcolor_input);
32 sqGetGlobalVar('color_type', $color_type);
33 sqGetGlobalVar('match_type', $match_type);
34 sqGetGlobalVar('value', $value);
35 sqgetGlobalVar('smtoken', $submitted_token, SQ_FORM, '');
36
37 /* end of get globals */
38
39 function oh_opt( $val, $sel, $tit ) {
40 echo "<option value=\"$val\"";
41 if ( $sel )
42 echo ' selected="selected"';
43 echo ">$tit</option>\n";
44 }
45
46 if (! isset($action)) {
47 $action = '';
48 }
49 if (! isset($message_highlight_list)) {
50 $message_highlight_list = array();
51 }
52
53 if (isset($theid) && ($action == 'delete') ||
54 ($action == 'up') ||
55 ($action == 'down')) {
56
57 // security check
58 sm_validate_security_token($submitted_token, 3600, TRUE);
59
60 $new_rules = array();
61 switch($action) {
62 case('delete'):
63 foreach($message_highlight_list as $rid => $rule) {
64 if($rid != $theid) {
65 $new_rules[] = $rule;
66 }
67 }
68 break;
69 case('down'):
70 $theid++;
71 case('up'):
72 foreach($message_highlight_list as $rid => $rule) {
73 if($rid == $theid) {
74 $temp_rule = $new_rules[$rid-1];
75 $new_rules[$rid-1] = $rule;
76 $new_rules[$rid] = $temp_rule;
77 } else {
78 $new_rules[$rid] = $rule;
79 }
80 }
81 break;
82 default:
83 $new_rules = $message_highlight_list;
84 break;
85 }
86 $message_highlight_list = $new_rules;
87
88 setPref($data_dir, $username, 'hililist', serialize($message_highlight_list));
89
90 header( 'Location: ' .get_location(). '/options_highlight.php' );
91 exit;
92 } else if ($action == 'save') {
93
94 // security check
95 sm_validate_security_token($submitted_token, 3600, TRUE);
96
97 if ($color_type == 1) $newcolor = $newcolor_choose;
98 elseif ($color_type == 2) $newcolor = $newcolor_input;
99 else $newcolor = $color_type;
100
101 $newcolor = str_replace('#', '', $newcolor);
102 $newcolor = str_replace('"', '', $newcolor);
103 $newcolor = str_replace('\'', '', $newcolor);
104 $value = str_replace(',', ' ', $value);
105
106 if(isset($theid)) {
107 $message_highlight_list[$theid] =
108 array( 'name' => $identname, 'color' => $newcolor,
109 'value' => $value, 'match_type' => $match_type );
110 } else {
111 $message_highlight_list[] =
112 array( 'name' => $identname, 'color' => $newcolor,
113 'value' => $value, 'match_type' => $match_type );
114 }
115
116 setPref($data_dir, $username, 'hililist', serialize($message_highlight_list));
117 }
118 displayPageHeader($color);
119
120 /**
121 * Display the current rule list
122 */
123 $rules = array();
124 foreach($message_highlight_list as $index=>$rule) {
125 $a = array();
126
127 $a['Name'] = sm_encode_html_special_chars($rule['name']);
128 $a['Color'] = $rule['color'];
129 $a['MatchField'] = '';
130 $a['MatchValue'] = sm_encode_html_special_chars($rule['value']);
131 switch ($rule['match_type']) {
132 case 'from' :
133 $a['MatchField'] = _("From");
134 break;
135 case 'to' :
136 $a['MatchField'] = _("To");
137 break;
138 case 'cc' :
139 $a['MatchField'] = _("Cc");
140 break;
141 case 'to_cc' :
142 $a['MatchField'] = _("To or Cc");
143 break;
144 case 'subject' :
145 $a['MatchField'] = _("subject");
146 break;
147 }
148
149 $rules[$index] = $a;
150 }
151
152 $oTemplate->assign('current_rules', $rules);
153
154 $token = sm_generate_security_token();
155
156 $oTemplate->assign('add_rule', 'options_highlight.php?action=add');
157 $oTemplate->assign('edit_rule', 'options_highlight.php?action=edit&amp;theid=');
158 $oTemplate->assign('delete_rule', 'options_highlight.php?action=delete&amp;smtoken=' . $token . '&amp;theid=');
159 $oTemplate->assign('move_up', 'options_highlight.php?action=up&amp;smtoken=' . $token . '&amp;theid=');
160 $oTemplate->assign('move_down', 'options_highlight.php?action=down&amp;smtoken=' . $token . '&amp;theid=');
161
162 $oTemplate->display('options_highlight_list.tpl');
163
164 /**
165 * Optionally, display the add/edit dialog
166 */
167 if ($action == 'edit' || $action == 'add') {
168
169 $color_list[0] = '4444aa';
170 $color_list[1] = '44aa44';
171 $color_list[2] = 'aaaa44';
172 $color_list[3] = '44aaaa';
173 $color_list[4] = 'aa44aa';
174 $color_list[5] = 'aaaaff';
175 $color_list[6] = 'aaffaa';
176 $color_list[7] = 'ffffaa';
177 $color_list[8] = 'aaffff';
178 $color_list[9] = 'ffaaff';
179 $color_list[10] = 'aaaaaa';
180 $color_list[11] = 'bfbfbf';
181 $color_list[12] = 'dfdfdf';
182 $color_list[13] = 'ffffff';
183
184 # helpful color chart from http://www.visibone.com/colorlab/big.html
185 $new_color_list["0,0"] = 'cccccc';
186 $new_color_list["0,1"] = '999999';
187 $new_color_list["0,2"] = '666666';
188 $new_color_list["0,3"] = '333333';
189 $new_color_list["0,4"] = '000000';
190
191 # red
192 $new_color_list["1,0"] = 'ff0000';
193 $new_color_list["1,1"] = 'cc0000';
194 $new_color_list["1,2"] = '990000';
195 $new_color_list["1,3"] = '660000';
196 $new_color_list["1,4"] = '330000';
197
198 $new_color_list["2,0"] = 'ffcccc';
199 $new_color_list["2,1"] = 'cc9999';
200 $new_color_list["2,2"] = '996666';
201 $new_color_list["2,3"] = '663333';
202 $new_color_list["2,4"] = '330000';
203
204 $new_color_list["3,0"] = 'ffcccc';
205 $new_color_list["3,1"] = 'ff9999';
206 $new_color_list["3,2"] = 'ff6666';
207 $new_color_list["3,3"] = 'ff3333';
208 $new_color_list["3,4"] = 'ff0000';
209
210 # green
211 $new_color_list["4,0"] = '00ff00';
212 $new_color_list["4,1"] = '00cc00';
213 $new_color_list["4,2"] = '009900';
214 $new_color_list["4,3"] = '006600';
215 $new_color_list["4,4"] = '003300';
216
217 $new_color_list["5,0"] = 'ccffcc';
218 $new_color_list["5,1"] = '99cc99';
219 $new_color_list["5,2"] = '669966';
220 $new_color_list["5,3"] = '336633';
221 $new_color_list["5,4"] = '003300';
222
223 $new_color_list["6,0"] = 'ccffcc';
224 $new_color_list["6,1"] = '99ff99';
225 $new_color_list["6,2"] = '66ff66';
226 $new_color_list["6,3"] = '33ff33';
227 $new_color_list["6,4"] = '00ff00';
228
229 # blue
230 $new_color_list["7,0"] = '0000ff';
231 $new_color_list["7,1"] = '0000cc';
232 $new_color_list["7,2"] = '000099';
233 $new_color_list["7,3"] = '000066';
234 $new_color_list["7,4"] = '000033';
235
236 $new_color_list["8,0"] = 'ccccff';
237 $new_color_list["8,1"] = '9999cc';
238 $new_color_list["8,2"] = '666699';
239 $new_color_list["8,3"] = '333366';
240 $new_color_list["8,4"] = '000033';
241
242 $new_color_list["9,0"] = 'ccccff';
243 $new_color_list["9,1"] = '9999ff';
244 $new_color_list["9,2"] = '6666ff';
245 $new_color_list["9,3"] = '3333ff';
246 $new_color_list["9,4"] = '0000ff';
247
248 # yellow
249 $new_color_list["10,0"] = 'ffff00';
250 $new_color_list["10,1"] = 'cccc00';
251 $new_color_list["10,2"] = '999900';
252 $new_color_list["10,3"] = '666600';
253 $new_color_list["10,4"] = '333300';
254
255 $new_color_list["11,0"] = 'ffffcc';
256 $new_color_list["11,1"] = 'cccc99';
257 $new_color_list["11,2"] = '999966';
258 $new_color_list["11,3"] = '666633';
259 $new_color_list["11,4"] = '333300';
260
261 $new_color_list["12,0"] = 'ffffcc';
262 $new_color_list["12,1"] = 'ffff99';
263 $new_color_list["12,2"] = 'ffff66';
264 $new_color_list["12,3"] = 'ffff33';
265 $new_color_list["12,4"] = 'ffff00';
266
267 # cyan
268 $new_color_list["13,0"] = '00ffff';
269 $new_color_list["13,1"] = '00cccc';
270 $new_color_list["13,2"] = '009999';
271 $new_color_list["13,3"] = '006666';
272 $new_color_list["13,4"] = '003333';
273
274 $new_color_list["14,0"] = 'ccffff';
275 $new_color_list["14,1"] = '99cccc';
276 $new_color_list["14,2"] = '669999';
277 $new_color_list["14,3"] = '336666';
278 $new_color_list["14,4"] = '003333';
279
280 $new_color_list["15,0"] = 'ccffff';
281 $new_color_list["15,1"] = '99ffff';
282 $new_color_list["15,2"] = '66ffff';
283 $new_color_list["15,3"] = '33ffff';
284 $new_color_list["15,4"] = '00ffff';
285
286 # magenta
287 $new_color_list["16,0"] = 'ff00ff';
288 $new_color_list["16,1"] = 'cc00cc';
289 $new_color_list["16,2"] = '990099';
290 $new_color_list["16,3"] = '660066';
291 $new_color_list["16,4"] = '330033';
292
293 $new_color_list["17,0"] = 'ffccff';
294 $new_color_list["17,1"] = 'cc99cc';
295 $new_color_list["17,2"] = '996699';
296 $new_color_list["17,3"] = '663366';
297 $new_color_list["17,4"] = '330033';
298
299 $new_color_list["18,0"] = 'ffccff';
300 $new_color_list["18,1"] = 'ff99ff';
301 $new_color_list["18,2"] = 'ff66ff';
302 $new_color_list["18,3"] = 'ff33ff';
303 $new_color_list["18,4"] = 'ff00ff';
304
305 $selected_input = FALSE;
306 $selected_choose = FALSE;
307 $selected_predefined = FALSE;
308
309 $name = $action=='edit' && isset($theid) && isset($message_highlight_list[$theid]['name']) ? $message_highlight_list[$theid]['name'] : '';
310 $field = $action=='edit' && isset($theid) && isset($message_highlight_list[$theid]['match_type']) ? $message_highlight_list[$theid]['match_type'] : '';
311 $value = $action=='edit' && isset($theid) && isset($message_highlight_list[$theid]['value']) ? $message_highlight_list[$theid]['value'] : '';
312 $color = $action=='edit' && isset($theid) && isset($message_highlight_list[$theid]['color']) ? $message_highlight_list[$theid]['color'] : '';
313
314 if ($action == 'edit' && isset($theid) && isset($message_highlight_list[$theid]['color'])) {
315 for ($i=0; $i < 14; $i++) {
316 if ($color_list[$i] == $message_highlight_list[$theid]['color']) {
317 $selected_choose = TRUE;
318 continue;
319 }
320 }
321 }
322
323 $pre_defined_color = 0;
324 for($x = 0; $x < 5; $x++) {
325 for($y = 0; $y < 19; $y++) {
326 $gridindex = "$y,$x";
327 $gridcolor = $new_color_list[$gridindex];
328 if ($gridcolor == $color) {
329 $pre_defined_color = 1;
330 break;
331 }
332 }
333 }
334
335 if (isset($theid) && !isset($message_highlight_list[$theid]['color']))
336 $selected_choose = TRUE;
337 else if ($pre_defined_color)
338 $selected_predefined = TRUE;
339 else if ($selected_choose == '')
340 $selected_input = TRUE;
341
342 $oTemplate->assign('rule_name', $name);
343 $oTemplate->assign('rule_value', $value);
344 $oTemplate->assign('rule_field', $field);
345 $oTemplate->assign('rule_color', $color);
346 $oTemplate->assign('color_radio', ($selected_choose ? 1 : ($selected_input ? 2 : 0)));
347 $oTemplate->assign('color_input', ($selected_input ? $color : ''));
348
349 echo addForm('options_highlight.php', 'post', 'f', '', '', array(), TRUE).
350 addHidden('action', 'save');
351 if($action == 'edit') {
352 echo addHidden('theid', (isset($theid)?$theid:''));
353 }
354
355 $oTemplate->display('options_highlight_addedit.tpl');
356
357 echo "</form>\n";
358 }
359 do_hook('options_highlight_bottom', $null);
360
361 $oTemplate->display('footer.tpl');