Incoproated template config file. Templates can now include their own javascript...
[squirrelmail.git] / templates / default / message_list.tpl
1 <?php
2
3 /**
4 * message_list.tpl
5 *
6 * Template for viewing a messages list
7 *
8 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
9 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
10 * @version $Id$
11 * @package squirrelmail
12 * @subpackage templates
13 */
14
15 /** add required includes */
16 include_once(SM_PATH . 'templates/util_global.php');
17 include_once(SM_PATH . 'templates/util_message_list.php');
18
19 /* retrieve the template vars */
20 extract($t);
21
22 do_hook('mailbox_index_before');
23
24 /**
25 * Calculate string "Viewing message x to y (z total)"
26 */
27 $msg_cnt_str = '';
28 if ($pageOffset < $end_msg) {
29 $msg_cnt_str = sprintf(_("Viewing Messages: %s to %s (%s total)"),
30 '<em>'.$pageOffset.'</em>', '<em>'.$end_msg.'</em>', $iNumberOfMessages);
31 } else if ($pageOffset == $end_msg) {
32 $msg_cnt_str = sprintf(_("Viewing Message: %s (%s total)"), '<em>'.$pageOffset.'</em>', $iNumberOfMessages);
33 }
34
35
36
37 if (!($sort & SQSORT_THREAD) && $enablesort) {
38 $aSortSupported = array(SQM_COL_SUBJ => array(SQSORT_SUBJ_ASC , SQSORT_SUBJ_DESC),
39 SQM_COL_DATE => array(SQSORT_DATE_DESC , SQSORT_DATE_ASC),
40 SQM_COL_INT_DATE => array(SQSORT_INT_DATE_DESC, SQSORT_INT_DATE_ASC),
41 SQM_COL_FROM => array(SQSORT_FROM_ASC , SQSORT_FROM_DESC),
42 SQM_COL_TO => array(SQSORT_TO_ASC , SQSORT_TO_DESC),
43 SQM_COL_CC => array(SQSORT_CC_ASC , SQSORT_CC_DESC),
44 SQM_COL_SIZE => array(SQSORT_SIZE_ASC , SQSORT_SIZE_DESC));
45 } else {
46 $aSortSupported = array();
47 }
48
49 // figure out which columns should serve as labels for checkbox:
50 // we try to grab the two columns before and after the checkbox,
51 // except the subject column, since it is the link that opens
52 // the message view
53 //
54 // if $javascript_on is set, then the highlighting code takes
55 // care of this; just skip it
56 //
57 $show_label_columns = array();
58 $index_order_part = array();
59 if (!($javascript_on && $fancy_index_highlite)) {
60 $get_next_two = 0;
61 $last_order_part = 0;
62 $last_last_order_part = 0;
63 foreach ($aOrder as $index_order_part) {
64 if ($index_order_part == SQM_COL_CHECK) {
65 $get_next_two = 1;
66 if ($last_last_order_part != SQM_COL_SUBJ)
67 $show_label_columns[] = $last_last_order_part;
68 if ($last_order_part != SQM_COL_SUBJ)
69 $show_label_columns[] = $last_order_part;
70
71 } else if ($get_next_two > 0 && $get_next_two < 3 && $index_order_part != SQM_COL_SUBJ) {
72 $show_label_columns[] = $index_order_part;
73 $get_next_two++;
74 }
75 $last_last_order_part = $last_order_part;
76 $last_order_part = $index_order_part;
77 }
78 }
79
80 /**
81 * All icon functionality is now handled through $icon_theme_path.
82 * $icon_theme_path will contain the path to the user-selected theme. If it is
83 * NULL, the user and/or admin have turned off icons.
84 */
85
86 // set this to an empty string to turn off extra
87 // highlighting of checked rows
88 //
89 //$clickedColor = '';
90 $clickedColor = (empty($color[16])) ? $color[2] : $color[16];
91
92 ?>
93 <div id="message_list">
94 <form id="<?php echo $form_id;?>" name="<?php echo $form_name;?>" method="post" action="<?php echo $php_self;?>">
95 <table class="table_empty" cellspacing="0">
96 <tr>
97 <td>
98 <table class="table_standard" cellspacing="0">
99 <tr>
100 <td>
101 <table class="table_empty" cellspacing="0">
102 <tr>
103 <td class="links_paginator">
104 <!-- paginator and thread link string -->
105 <?php
106 /**
107 * because the template is included in the display function we refer to $oTemplate with $this
108 */
109 $paginator_str = $this->fetch('paginator.tpl');
110 echo $paginator_str . $thread_link_str ."\n"; ?>
111 <!-- end paginator and thread link string -->
112 </td>
113 <!-- message count string -->
114 <td class="message_count"><?php echo $msg_cnt_str; ?></td>
115 <!-- end message count string -->
116 </tr>
117 </table>
118 </td>
119 </tr>
120 <?php
121 if (count($aFormElements)) {
122 ?>
123 <!-- start message list form control -->
124 <tr class="message_list_controls" cellspacing="0">
125 <td>
126 <table class="table_empty" cellspacing="0">
127 <tr>
128 <td class="message_control_buttons" cellspacing="0">
129
130 <?php
131 foreach ($aFormElements as $key => $value) {
132 switch ($value[1]) {
133 case 'submit':
134 if ($key != 'moveButton' && $key != 'delete' && $key != 'undeleteButton') { // add move in a different table cell
135 ?>
136 <input type="submit" name="<?php echo $key; ?>" value="<?php echo $value[0]; ?>" class="message_control_button" />&nbsp;
137 <?php
138 }
139 break;
140 case 'checkbox':
141 if ($key != 'bypass_trash') {
142 ?>
143 <input type="checkbox" name="<?php echo $key; ?>" /><?php echo $value[0]; ?>&nbsp;
144 <?php
145 }
146 break;
147 case 'hidden':
148 echo '<input type="hidden" name="'.$key.'" value="'. $value[0]."\">\n";
149 break;
150 default: break;
151 }
152 }
153 ?>
154 </td>
155 <td class="message_control_delete">
156
157
158 <?php
159 if (isset($aFormElements['delete'])) {
160 ?>
161 <input type="submit" name="delete" value="<?php echo $aFormElements['delete'][0]; ?>" class="message_control_button" />&nbsp;
162 <?php
163 if (isset($aFormElements['bypass_trash'])) {
164 ?>
165 <input type="checkbox" name="bypass_trash" /><?php echo $aFormElements['bypass_trash'][0]; ?>&nbsp;
166 <?php
167 }
168 if (isset($aFormElements['undeleteButton'])) {
169 ?>
170 <input type="submit" name="undeleteButton" value="<?php echo $aFormElements['undeleteButton'][0]; ?>" class="message_control_button" />&nbsp;
171 <?php
172 }
173 ?>
174 </td>
175 <?php
176 } // if (isset($aFormElements['delete']))
177 if (isset($aFormElements['moveButton'])) {
178 ?>
179 <td class="message_control_move">
180 <select name="targetMailbox">
181 <?php echo $aFormElements['targetMailbox'][0];?>
182 </select>
183 <input type="submit" name="moveButton" value="<?php echo $aFormElements['moveButton'][0]; ?>" class="message_control_button" />
184 </td>
185
186 <?php
187 } // if (isset($aFormElements['move']))
188 ?>
189 </tr>
190 </table>
191 </td>
192 </tr>
193 <!-- end message list form control -->
194 <?php
195 } // if (count($aFormElements))
196 ?>
197 </table>
198 <?php
199 do_hook('mailbox_form_before');
200 ?>
201 </td>
202 </tr>
203 <tr><td class="spacer"></td></tr>
204 <tr>
205 <td>
206 <table class="table_messageListWrapper" cellspacing="0">
207 <tr>
208 <td>
209 <table class="table_messageList" cellspacing="0">
210 <!-- table header start -->
211 <?php
212 /*
213 * As an FYI, Firefox on Windows seems to have an issue w/ putting wierd breaks while
214 * rendering this table if we use THEAD and TH tags. No other browser or platform has
215 * this issue. We will use TR/TD w/ another CSS class to work around this.
216 */
217 ?>
218 <tr class="headerRow">
219 <?php
220 $aWidth = calcMessageListColumnWidth($aOrder);
221 foreach($aOrder as $iCol) {
222 ?>
223 <td style="width:<?php echo $aWidth[$iCol]; ?>%">
224 <?php
225 switch ($iCol) {
226 case SQM_COL_CHECK:
227 if ($javascript_on) {
228 echo '<input type="checkbox" name="toggleAll" title="'._("Toggle All").'" onclick="toggle_all(\''.$form_id."',".$fancy_index_highlite.')" />'."\n";
229 } else {
230 $link = $baseurl . "&amp;startMessage=$pageOffset&amp;checkall=";
231 if (sqgetGlobalVar('checkall',$checkall,SQ_GET)) {
232 $link .= ($checkall) ? '0' : '1';
233 } else {
234 $link .= '1';
235 }
236 echo "<a href=\"$link\">"._("All").'</a>';
237 }
238 break;
239 case SQM_COL_FROM: echo _("From")."\n"; break;
240 case SQM_COL_DATE: echo _("Date")."\n"; break;
241 case SQM_COL_SUBJ: echo _("Subject")."\n"; break;
242 case SQM_COL_FLAGS:
243 echo getIcon($icon_theme_path, 'msg_new.png', '&nbsp;', _("Message Flags")) . "\n";
244 break;
245 case SQM_COL_SIZE: echo _("Size")."\n"; break;
246 case SQM_COL_PRIO:
247 echo getIcon($icon_theme_path, 'prio_high.png', '!', _("Priority")) . "\n";
248 break;
249 case SQM_COL_ATTACHMENT:
250 echo getIcon($icon_theme_path, 'attach.png', '+', _("Attachment")) . "\n";
251 break;
252 case SQM_COL_INT_DATE: echo _("Received")."\n"; break;
253 case SQM_COL_TO: echo _("To")."\n"; break;
254 case SQM_COL_CC: echo _("Cc")."\n"; break;
255 case SQM_COL_BCC: echo _("Bcc")."\n"; break;
256 default: break;
257 }
258 // add the sort buttons
259 if (isset($aSortSupported[$iCol])) {
260 if ($sort == $aSortSupported[$iCol][0]) {
261 $newsort = $aSortSupported[$iCol][1];
262 $img = 'up_pointer.png';
263 } else if ($sort == $aSortSupported[$iCol][1]) {
264 $newsort = 0;
265 $img = 'down_pointer.png';
266 } else {
267 $newsort = $aSortSupported[$iCol][0];
268 $img = 'sort_none.png';
269 }
270 /* Now that we have everything figured out, show the actual button. */
271 echo " <a href=\"$baseurl&amp;startMessage=1&amp;srt=$newsort\">" .
272 getIcon($icon_theme_path, $img, '&nbsp;', _("Click here to change the sorting of the message list")) . "\n" .
273 '</a>';
274 }
275 ?>
276 </td>
277 <?php
278 }
279 ?>
280 </tr>
281 <!-- end table header -->
282
283 <!-- Message headers start -->
284 <?php
285 $i = 0;
286 $iColCnt = count($aOrder);
287 $sLine = '';
288
289 // this stuff does the auto row highlighting on mouseover
290 //
291 if ($javascript_on && $fancy_index_highlite) {
292
293 $mouseoverColor = $color[5];
294
295 // set this to an empty string to turn off extra
296 // highlighting of checked rows
297 //
298 //$clickedColor = '';
299 $clickedColor = (!empty($color[16])) ? $color[16] : $color[2];
300
301 $checkbox_javascript = ' onclick="this.checked = !this.checked;"';
302 } else {
303 $checkbox_javascript = '';
304 }
305 foreach ($aMessages as $iUid => $aMsg) {
306 echo $sLine;
307
308 /**
309 * Display message header row in messages list
310 *
311 */
312
313 $aColumns = $aMsg['columns'];
314
315
316 /**
317 * Check the flags and set a class var.
318 */
319 if (isset($aColumns[SQM_COL_FLAGS])) {
320 $aFlags = $aColumns[SQM_COL_FLAGS]['value'];
321 $sFlags = getFlagIcon($aFlags, $icon_theme_path);
322
323 /* add the flag string to the value index */
324 $aColumns[SQM_COL_FLAGS]['value'] = $sFlags;
325 }
326 /**
327 * Check the priority column
328 */
329 if (isset($aColumns[SQM_COL_PRIO])) {
330 $sValue = getPriorityIcon($aColumns[SQM_COL_PRIO]['value'], $icon_theme_path);
331 $aColumns[SQM_COL_PRIO]['value'] = $sValue;
332 }
333
334 /**
335 * Check the attachment column
336 */
337 if (isset($aColumns[SQM_COL_ATTACHMENT])) {
338 $sValue = getAttachmentIcon($aColumns[SQM_COL_ATTACHMENT]['value'], $icon_theme_path);
339 $aColumns[SQM_COL_ATTACHMENT]['value'] = $sValue;
340 }
341
342 $class = 'even';
343 /**
344 * If alternating row colors is set, adapt the CSS class
345 */
346 if (isset($alt_index_colors) && $alt_index_colors) {
347 if (!($i % 2)) {
348 $class = 'odd';
349 }
350
351 }
352 if (isset($aMsg['row']['color']))
353 {
354 $bgcolor = $aMsg['row']['color'];
355 $class = 'misc'.$i;
356 }
357 else $bgcolor = '';
358
359 $row_extra = '';
360
361 // this stuff does the auto row highlighting on mouseover
362 //
363 if ($javascript_on && $fancy_index_highlite) {
364 $row_extra .= ' onmouseover="rowOver(\''.$form_id . '_msg' . $i.'\');" onmouseout="setPointer(this, ' . $i . ', \'out\', \'' . $class . '\', \'mouse_over\', \'clicked\');" onmousedown="setPointer(this, ' . $i . ', \'click\', \'' . $class . '\', \'mouse_over\', \'clicked\');"';
365 }
366 // this does the auto-checking of the checkbox no matter
367 // where on the row you click
368 //
369 $javascript_auto_click = '';
370 if ($javascript_on && $fancy_index_highlite) {
371 // include the form_id in order to show multiple messages lists. Otherwise id isn't unique
372 $javascript_auto_click = " onMouseDown=\"row_click('$form_id"."_msg$i')\"";
373 }
374
375 /*
376 * Message Highlighting requires a unique CSS class declaration for proper
377 * mouseover functionality. There is no harm in doing this when the mouseover
378 * functionality is disabled
379 */
380 if ($class != 'even' && $class != 'odd')
381 {
382 ?>
383 <style type="text/css">
384 <!--
385 .table_messageList tr.<?php echo $class; ?> { background:<?php echo $bgcolor; ?> }
386 -->
387 </style>
388 <?php
389 }
390 ?>
391 <tr <?php echo (empty($class) ? '' : 'class="'.$class.'" '); echo $row_extra;?>>
392 <?php
393 // flag style mumbo jumbo
394 $sPre = $sEnd = '';
395 if (isset($aColumns[SQM_COL_FLAGS])) {
396 if (!in_array('seen',$aFlags) || !$aFlags['seen']) {
397 $sPre = '<span class="unread">'; $sEnd = '</span>';
398 }
399 if (in_array('deleted',$aFlags) && $aFlags['deleted']) {
400 $sPre = '<span class="deleted">' . $sPre;
401 $sEnd .= '</span>';
402 } else {
403 if (in_array('flagged',$aFlags) && $aFlags['flagged']) {
404 $sPre = '<span class="flagged">' . $sPre;
405 $sEnd .= '</span>';
406 }
407 }
408 }
409 /**
410 * Because the order of the columns and which columns to show is a user preference
411 * we have to do some php coding to display the columns in the right order
412 */
413 foreach ($aOrder as $iCol) {
414 if (in_array($iCol, $show_label_columns)) {
415 $sLabelStart = '<label for="'.$form_id."_msg$i\">";
416 $sLabelEnd = '</label>';
417 } else {
418 $sLabelStart = '';
419 $sLabelEnd = '';
420 }
421 $aCol = (isset($aColumns[$iCol])) ? $aColumns[$iCol] : array();
422 $title = (isset($aCol['title'])) ? $aCol['title'] : '';
423 $link = (isset($aCol['link'])) ? $aCol['link'] : '';
424 $link_extra = (isset($aCol['link_extra'])) ? $aCol['link_extra'] : '';
425 $onclick = (isset($aCol['onclick'])) ? $aCol['onclick'] : '';
426 $link = (isset($aCol['link'])) ? $aCol['link'] : '';
427 $value = (isset($aCol['value'])) ? $aCol['value'] : '';
428 $target = (isset($aCol['target'])) ? $aCol['target'] : '';
429 if ($iCol !== SQM_COL_CHECK) {
430 $value = $sLabelStart.$sPre.$value.$sEnd.$sLabelEnd;
431 }
432
433
434 switch ($iCol) {
435 case SQM_COL_CHECK:
436 if ($javascript_on) {
437 echo '<td class="col_check"'. $javascript_auto_click. '>' ?>
438 <input type="checkbox" name="<?php echo "msg[$i]";?>" id="<?php echo $form_id."_msg$i";?>" value="<?php echo $iUid;?>" <?php echo $checkbox_javascript;?> /></td>
439 <?php
440 } else {
441 echo '<td class="col_check">';
442 $checked = ($checkall) ? " checked=checked " : " ";
443 echo "<input type=\"checkbox\" name=\"msg[".$i."]\" id=\"".$form_id."_msg$i\" value=\"$iUid\" $checked/></td>";
444 }
445 break;
446 case SQM_COL_SUBJ:
447 $indent = $aCol['indent'];
448 $sText = " <td class=\"col_subject\" $javascript_auto_click>";
449 if ($align['left'] == 'left') {
450 $sText .= str_repeat('&nbsp;&nbsp;',$indent);
451 }
452 $sText .= "<a href=\"$link\"";
453 if ($target) { $sText .= " target=\"$target\""; }
454 if ($title) { $sText .= " title=\"$title\""; }
455 if ($onclick) { $sText .= " onclick=\"$onclick\""; }
456 if ($link_extra) { $sText .= " $link_extra"; }
457 if ($javascript_on && $fancy_index_highlite) {
458 $sText .= " onmousedown=\"row_click('$form_id"."_msg$i'); setPointer(this." . (empty($bold) ? '' : 'parentNode.') .
459 'parentNode.parentNode, ' . $i . ', \'click\', \''. $class. '\', \'mouse_over\', \'' .
460 $clickedColor .'\');"';
461 }
462 $sText .= ">";
463 $sText .= $value . '</a>';
464 if ($align['left'] == 'right') {
465 $sText .= str_repeat('&nbsp;&nbsp;',$indent);
466 }
467 echo $sText."</td>\n";
468 break;
469 case SQM_COL_SIZE:
470 case SQM_COL_FLAGS:
471 $sText = " <td class=\"col_flags\" $javascript_auto_click>";
472 $sText .= "$value</td>\n";
473 echo $sText;
474 break;
475 case SQM_COL_INT_DATE:
476 case SQM_COL_DATE:
477 $sText = " <td class=\"col_date\" $javascript_auto_click>";
478 $sText .= $value. "</td>\n";
479 echo $sText;
480 break;
481 default:
482 $sText = " <td class=\"col_text\" $javascript_auto_click";
483 if ($link) {
484 $sText .= "><a href=\"$link\"";
485 if ($target) { $sText .= " target=\"$target\"";}
486 if ($title) { $sText .= " title=\"$title\"" ;}
487 $sText .= ">";
488 } else {
489 if ($title) {$sText .= " title=\"$title\"";}
490 $sText .= ">";
491 }
492 $sText .= $value;
493 if ($link) { $sText .= '</a>';}
494 echo $sText."</td>\n";
495 break;
496 }
497 }
498 ?>
499 </tr>
500 <?php
501 $sLine = "<tr><td colspan=\"$iColCnt\" class=\"spacer\"></td></tr>\n";
502 ++$i;
503
504 /*
505 * End displaying row part
506 */
507 }
508
509 ?>
510 <!-- Message headers end -->
511 </table>
512 </td>
513 </tr>
514 </table>
515 </td>
516 </tr>
517 <tr><td class="spacer"></td></tr>
518 <tr>
519 <td>
520 <table class="table_standard" cellspacing="0">
521 <tr>
522 <td>
523 <table class="table_empty" cellspacing="0">
524 <tr>
525 <td class="links_paginator"><?php echo $paginator_str; ?></td>
526 <td class="message_count"><?php echo $msg_cnt_str; ?></td>
527 </tr>
528 </table>
529 </td>
530 </tr>
531 </table>
532 </td>
533 </tr>
534 <tr>
535 <td>
536 <?php do_hook('mailbox_index_after');?>
537 </td>
538 </tr>
539 </table>
540 </form>
541 </div>