Missed a spelling change
[squirrelmail.git] / src / options_highlight.php
CommitLineData
9d157cec 1<?php
895905c0 2
c57b0888 3/**
4 * options_highlight.php
5 *
15e6162e 6 * Copyright (c) 1999-2002 The SquirrelMail Project Team
c57b0888 7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * Displays message highlighting options
10 *
11 * $Id$
12 */
ef870322 13
c57b0888 14require_once('../src/validate.php');
15require_once('../functions/display_messages.php');
16require_once('../functions/imap.php');
17require_once('../functions/array.php');
18require_once('../functions/plugin.php');
46d38f78 19require_once('../functions/strings.php');
545238b1 20require_once('../functions/html.php');
9d157cec 21
c57b0888 22function oh_opt( $val, $sel, $tit ) {
d79e01f5 23 echo "<option value=\"$val\"";
c57b0888 24 if ( $sel )
bd9bbfef 25 echo ' selected';
c57b0888 26 echo ">$tit</option>\n";
27}
e697b6cc 28
d79e01f5 29if (! isset($action)) {
30 $action = '';
31}
32if (! isset($message_highlight_list)) {
33 $message_highlight_list = array();
34}
35
36if ($action == 'delete' && isset($theid)) {
37 removePref($data_dir, $username, "highlight$theid");
b74b4148 38 header( "Location: $SCRIPT_NAME" );
d79e01f5 39 exit;
40} else if ($action == 'save') {
41 if (!$theid) $theid = 0;
0f8a1ce9 42 $identname = str_replace(',', ' ', $identname);
d79e01f5 43 if ($color_type == 1) $newcolor = $newcolor_choose;
44 elseif ($color_type == 2) $newcolor = $newcolor_input;
45 else $newcolor = $color_type;
46
0f8a1ce9 47 $newcolor = str_replace(',', '', $newcolor);
48 $newcolor = str_replace('#', '', $newcolor);
49 $newcolor = str_replace('"', '', $newcolor);
50 $newcolor = str_replace('\'', '', $newcolor);
51 $value = str_replace(',', ' ', $value);
d79e01f5 52
53 setPref($data_dir, $username, "highlight$theid", $identname.','.$newcolor.','.$value.','.$match_type);
54 $message_highlight_list[$theid]['name'] = $identname;
55 $message_highlight_list[$theid]['color'] = $newcolor;
56 $message_highlight_list[$theid]['value'] = $value;
57 $message_highlight_list[$theid]['match_type'] = $match_type;
58}
59displayPageHeader($color, 'None');
c36ed9cf 60
545238b1 61echo '<br>' .
62html_tag( 'table', "\n" .
63 html_tag( 'tr', "\n" .
64 html_tag( 'td', '<center><b>' . _("Options") . ' - ' . _("Message Highlighting") . '</b></center>',
65 'left', $color[0] )
66 ) ,
67'center', '', 'width="95% border="0" cellpadding="2" cellspacing="0"' ) . "<br>\n" .
68html_tag( 'table', '', '', '', 'width="100% border="0" cellpadding="0" cellspacing="0"' ) .
69 html_tag( 'tr' ) . "\n" .
70 html_tag( 'td', '', 'left' );
71
72echo '<center>[<a href="options_highlight.php?action=add">' . _("New") . '</a>]'.
e697b6cc 73 ' - [<a href="options.php">'._("Done").'</a>]</center><br>'."\n";
d79e01f5 74if (count($message_highlight_list) >= 1) {
545238b1 75 echo html_tag( 'table', '', 'center', '', 'width="80% border="0" cellpadding="3" cellspacing="0"' ) . "\n";
d79e01f5 76 for ($i=0; $i < count($message_highlight_list); $i++) {
545238b1 77 $match_type = '';
78 switch ($message_highlight_list[$i]['match_type'] ) {
79 case 'from' :
80 $match_type = _("From");
81 break;
82 case 'to' :
83 $match_type = _("To");
84 break;
85 case 'cc' :
86 $match_type = _("Cc");
87 break;
88 case 'to_cc' :
89 $match_type = _("To or Cc");
90 break;
91 case 'subject' :
92 $match_type = _("subject");
93 break;
94 }
95
96 echo html_tag( 'tr',
97 html_tag( 'td',
98 '<small>[<a href="options_highlight.php?action=edit&amp;theid=' . $i . '">' .
99 _("Edit") .
100 '</a>]&nbsp;[<a href="options_highlight.php?action=delete&amp;theid='.
101 $i . '">' . _("Delete") . '</a>]</small>' ,
102 'left', $color[4], 'width="20%" nowrap' ) .
103 html_tag( 'td',
104 htmlspecialchars($message_highlight_list[$i]['name']) ,
105 'left' ) .
106 html_tag( 'td',
107 $match_type . ' = ' .
108 htmlspecialchars($message_highlight_list[$i]['value']) ,
109 'left' ) ,
110 '', $message_highlight_list[$i]['color'] ) . "\n";
d79e01f5 111 }
112 echo "</table>\n".
113 "<br>\n";
114} else {
115 echo '<center>' . _("No highlighting is defined") . "</center><br>\n".
116 "<br>\n";
117}
118if ($action == 'edit' || $action == 'add') {
119 if (!isset($theid))
120 {
5b528f70 121 $theid = count($message_highlight_list);
122 $message_highlight_list[$theid] = array();
d79e01f5 123 }
124
125 $color_list[0] = '4444aa';
126 $color_list[1] = '44aa44';
127 $color_list[2] = 'aaaa44';
128 $color_list[3] = '44aaaa';
129 $color_list[4] = 'aa44aa';
130 $color_list[5] = 'aaaaff';
131 $color_list[6] = 'aaffaa';
132 $color_list[7] = 'ffffaa';
133 $color_list[8] = 'aaffff';
134 $color_list[9] = 'ffaaff';
135 $color_list[10] = 'aaaaaa';
136 $color_list[11] = 'bfbfbf';
137 $color_list[12] = 'dfdfdf';
138 $color_list[13] = 'ffffff';
139
140 # helpful color chart from http://www.visibone.com/colorlab/big.html
141 $new_color_list["0,0"] = 'cccccc';
142 $new_color_list["0,1"] = '999999';
143 $new_color_list["0,2"] = '666666';
144 $new_color_list["0,3"] = '333333';
145 $new_color_list["0,4"] = '000000';
146
147 # red
148 $new_color_list["1,0"] = 'ff0000';
149 $new_color_list["1,1"] = 'cc0000';
150 $new_color_list["1,2"] = '990000';
151 $new_color_list["1,3"] = '660000';
152 $new_color_list["1,4"] = '330000';
153
154 $new_color_list["2,0"] = 'ffcccc';
155 $new_color_list["2,1"] = 'cc9999';
156 $new_color_list["2,2"] = '996666';
157 $new_color_list["2,3"] = '663333';
158 $new_color_list["2,4"] = '330000';
159
160 $new_color_list["3,0"] = 'ffcccc';
161 $new_color_list["3,1"] = 'ff9999';
162 $new_color_list["3,2"] = 'ff6666';
163 $new_color_list["3,3"] = 'ff3333';
164 $new_color_list["3,4"] = 'ff0000';
165
166 # green
167 $new_color_list["4,0"] = '00ff00';
168 $new_color_list["4,1"] = '00cc00';
169 $new_color_list["4,2"] = '009900';
170 $new_color_list["4,3"] = '006600';
171 $new_color_list["4,4"] = '003300';
172
173 $new_color_list["5,0"] = 'ccffcc';
174 $new_color_list["5,1"] = '99cc99';
175 $new_color_list["5,2"] = '669966';
176 $new_color_list["5,3"] = '336633';
177 $new_color_list["5,4"] = '003300';
178
179 $new_color_list["6,0"] = 'ccffcc';
180 $new_color_list["6,1"] = '99ff99';
181 $new_color_list["6,2"] = '66ff66';
182 $new_color_list["6,3"] = '33ff33';
183 $new_color_list["6,4"] = '00ff00';
184
185 # blue
186 $new_color_list["7,0"] = '0000ff';
187 $new_color_list["7,1"] = '0000cc';
188 $new_color_list["7,2"] = '000099';
189 $new_color_list["7,3"] = '000066';
190 $new_color_list["7,4"] = '000033';
191
192 $new_color_list["8,0"] = 'ccccff';
193 $new_color_list["8,1"] = '9999cc';
194 $new_color_list["8,2"] = '666699';
195 $new_color_list["8,3"] = '333366';
196 $new_color_list["8,4"] = '000033';
197
198 $new_color_list["9,0"] = 'ccccff';
199 $new_color_list["9,1"] = '9999ff';
200 $new_color_list["9,2"] = '6666ff';
201 $new_color_list["9,3"] = '3333ff';
202 $new_color_list["9,4"] = '0000ff';
203
204 # yellow
205 $new_color_list["10,0"] = 'ffff00';
206 $new_color_list["10,1"] = 'cccc00';
207 $new_color_list["10,2"] = '999900';
208 $new_color_list["10,3"] = '666600';
209 $new_color_list["10,4"] = '333300';
210
211 $new_color_list["11,0"] = 'ffffcc';
212 $new_color_list["11,1"] = 'cccc99';
213 $new_color_list["11,2"] = '999966';
214 $new_color_list["11,3"] = '666633';
215 $new_color_list["11,4"] = '333300';
216
217 $new_color_list["12,0"] = 'ffffcc';
218 $new_color_list["12,1"] = 'ffff99';
219 $new_color_list["12,2"] = 'ffff66';
220 $new_color_list["12,3"] = 'ffff33';
221 $new_color_list["12,4"] = 'ffff00';
222
223 # cyan
224 $new_color_list["13,0"] = '00ffff';
225 $new_color_list["13,1"] = '00cccc';
226 $new_color_list["13,2"] = '009999';
227 $new_color_list["13,3"] = '006666';
228 $new_color_list["13,4"] = '003333';
229
230 $new_color_list["14,0"] = 'ccffff';
231 $new_color_list["14,1"] = '99cccc';
232 $new_color_list["14,2"] = '669999';
233 $new_color_list["14,3"] = '336666';
234 $new_color_list["14,4"] = '003333';
235
236 $new_color_list["15,0"] = 'ccffff';
237 $new_color_list["15,1"] = '99ffff';
238 $new_color_list["15,2"] = '66ffff';
239 $new_color_list["15,3"] = '33ffff';
240 $new_color_list["15,4"] = '00ffff';
241
242 # magenta
243 $new_color_list["16,0"] = 'ff00ff';
244 $new_color_list["16,1"] = 'cc00cc';
245 $new_color_list["16,2"] = '990099';
246 $new_color_list["16,3"] = '660066';
247 $new_color_list["16,4"] = '330033';
248
249 $new_color_list["17,0"] = 'ffccff';
250 $new_color_list["17,1"] = 'cc99cc';
251 $new_color_list["17,2"] = '996699';
252 $new_color_list["17,3"] = '663366';
253 $new_color_list["17,4"] = '330033';
254
255 $new_color_list["18,0"] = 'ffccff';
256 $new_color_list["18,1"] = 'ff99ff';
257 $new_color_list["18,2"] = 'ff66ff';
258 $new_color_list["18,3"] = 'ff33ff';
259 $new_color_list["18,4"] = 'ff00ff';
260
261 $selected_input = '';
262 $selected_choose = '';
263
264 for ($i=0; $i < 14; $i++) {
265 ${"selected".$i} = '';
266 }
267 if (isset($message_highlight_list[$theid]['color'])) {
268 for ($i=0; $i < 14; $i++) {
e1db998a 269 if ($color_list[$i] == $message_highlight_list[$theid]['color']) {
d79e01f5 270 $selected_choose = ' checked';
271 ${"selected".$i} = ' selected';
272 continue;
cd928157 273 }
d79e01f5 274 }
275 }
545238b1 276
277 if (isset($message_highlight_list[$theid]['color'])) {
278 $current_color = $message_highlight_list[$theid]['color'];
279 }
280 else {
281 $current_color = '63aa7f';
282 }
283
284 for($x = 0; $x < 5; $x++) {
285 for($y = 0; $y < 19; $y++) {
286 $gridindex = "$y,$x";
287 $gridcolor = $new_color_list[$gridindex];
288 if ($gridcolor == $current_color) {
289 $pre_defined_color = 1;
290 break;
291 }
292 }
293 }
294
d79e01f5 295 if (!isset($message_highlight_list[$theid]['color']))
296 $selected_choose = ' checked';
545238b1 297 else if ($pre_defined_color)
298 $selected_predefined = ' checked';
d79e01f5 299 else if ($selected_choose == '')
300 $selected_input = ' checked';
301
302 echo '<form name="f" action="options_highlight.php">' . "\n";
303 echo '<input type="hidden" value="save" name="action">' . "\n";
304 echo '<input type="hidden" value="'.$theid.'" name="theid">' . "\n";
545238b1 305 echo html_tag( 'table', '', 'center', '', 'width="80%" cellpadding="3" cellspacing="0" border="0"' ) . "\n";
306 echo html_tag( 'tr', '', '', $color[0] ) . "\n";
307 echo html_tag( 'td', '', 'right', '', 'nowrap' ) . "<b>\n";
d79e01f5 308 echo _("Identifying name") . ":";
309 echo ' </b></td>' . "\n";
545238b1 310 echo html_tag( 'td', '', 'left' ) . "\n";
d79e01f5 311 if (isset($message_highlight_list[$theid]['name']))
312 $disp = $message_highlight_list[$theid]['name'];
313 else
314 $disp = '';
315 $disp = htmlspecialchars($disp);
316 echo " <input type=\"text\" value=\"".$disp."\" name=\"identname\">";
317 echo " </td>\n";
318 echo " </tr>\n";
545238b1 319 echo html_tag( 'tr', html_tag( 'td', '<small><small>&nbsp;</small></small>', 'left' ) ) ."\n";
320 echo html_tag( 'tr', '', '', $color[0] ) . "\n";
321 echo html_tag( 'td', '<b>'. _("Color") . ':</b>', 'right' );
322 echo html_tag( 'td', '', 'left' );
d79e01f5 323 echo " <input type=\"radio\" name=color_type value=1$selected_choose> &nbsp;<select name=newcolor_choose>\n";
324 echo " <option value=\"$color_list[0]\"$selected0>" . _("Dark Blue") . "\n";
325 echo " <option value=\"$color_list[1]\"$selected1>" . _("Dark Green") . "\n";
326 echo " <option value=\"$color_list[2]\"$selected2>" . _("Dark Yellow") . "\n";
327 echo " <option value=\"$color_list[3]\"$selected3>" . _("Dark Cyan") . "\n";
328 echo " <option value=\"$color_list[4]\"$selected4>" . _("Dark Magenta") . "\n";
329 echo " <option value=\"$color_list[5]\"$selected5>" . _("Light Blue") . "\n";
330 echo " <option value=\"$color_list[6]\"$selected6>" . _("Light Green") . "\n";
331 echo " <option value=\"$color_list[7]\"$selected7>" . _("Light Yellow") . "\n";
332 echo " <option value=\"$color_list[8]\"$selected8>" . _("Light Cyan") . "\n";
333 echo " <option value=\"$color_list[9]\"$selected9>" . _("Light Magenta") . "\n";
334 echo " <option value=\"$color_list[10]\"$selected10>" . _("Dark Gray") . "\n";
335 echo " <option value=\"$color_list[11]\"$selected11>" . _("Medium Gray") . "\n";
336 echo " <option value=\"$color_list[12]\"$selected12>" . _("Light Gray") . "\n";
337 echo " <option value=\"$color_list[13]\"$selected13>" . _("White") . "\n";
338 echo " </select><br>\n";
339 echo " <input type=\"radio\" name=color_type value=2$selected_input> &nbsp;". _("Other:") ."<input type=\"text\" value=\"";
340 if ($selected_input) echo $message_highlight_list[$theid]["color"];
341 echo '" name="newcolor_input" size="7"> '._("Ex: 63aa7f")."<br>\n";
342 echo " </td>\n";
343 echo " </tr>\n";
344
345 # Show grid of color choices
545238b1 346 echo html_tag( 'tr', '', '', $color[0] ) . "\n";
347 echo html_tag( 'td', '', 'left', '', 'colspan="2"' );
348 echo html_tag( 'table', '', 'center', '', 'border=0 cellpadding="2" cellspacing="1"' ) . "\n";
349
d79e01f5 350 for($x = 0; $x < 5; $x++) {
545238b1 351 echo html_tag( 'tr' ) . "\n";
721d2a60 352 for($y = 0; $y < 19; $y++) {
d79e01f5 353 $gridindex = "$y,$x";
354 $gridcolor = $new_color_list[$gridindex];
545238b1 355 $selected = ($gridcolor == $current_color) ? ' checked' : '' ;
356 echo html_tag( 'td', '<input type="radio" name="color_type" value="#' . $gridcolor .'"' . $selected . '>', 'left', $gridcolor, 'colspan="2"' );
721d2a60 357 }
358 echo "</tr>\n";
d79e01f5 359 }
360 echo "</table>\n";
bd9bbfef 361 echo "</td></tr>\n";
d79e01f5 362
545238b1 363 echo html_tag( 'tr', html_tag( 'td', '<small><small>&nbsp;</small></small>', 'left' ) ) . "\n";
364 echo html_tag( 'tr', '', '', $color[0] ) . "\n";
365 echo html_tag( 'td', '', 'center', '', 'colspan="2"' ) . "\n";
d79e01f5 366 echo " <select name=match_type>\n";
367 oh_opt( 'from',
368 ($message_highlight_list[$theid]['match_type'] == 'from'),
369 _("From") );
370 oh_opt( 'to',
371 ($message_highlight_list[$theid]['match_type'] == 'to'),
372 _("To") );
373 oh_opt( 'cc',
374 ($message_highlight_list[$theid]['match_type'] == 'cc'),
375 _("Cc") );
376 oh_opt( 'to_cc',
377 ($message_highlight_list[$theid]['match_type'] == 'to_cc'),
378 _("To or Cc") );
379 oh_opt( 'subject',
380 ($message_highlight_list[$theid]['match_type'] == 'subject'),
381 _("Subject") );
382 echo " </select>\n";
383 echo '<b>' . _("Matches") . ':</b> ';
384 if (isset($message_highlight_list[$theid]['value']))
385 $disp = $message_highlight_list[$theid]['value'];
386 else
387 $disp = '';
388 $disp = htmlspecialchars($disp);
389 echo ' <input type="text" value="' . $disp .
390 '" name="value" size=40>';
391 echo " </td>\n";
392 echo " </tr>\n";
393 echo "</table>\n";
394 echo '<center><input type="submit" value="' . _("Submit") . "\"></center>\n";
395 echo "</form>\n";
396}
397do_hook('options_highlight_bottom');
9d157cec 398?>
c57b0888 399</body></html>