Document bad assumption
[squirrelmail.git] / templates / default / message_list.tpl
CommitLineData
49db257d 1<?php
2
3/**
4 * message_list.tpl
5 *
49db257d 6 * Template for viewing a messages list
7 *
83d1e1af 8 * The following variables are available in this template:
9//FIXME: need to clean (and document) this list, it is just a dump of the array keys of $t
10 * $sTemplateID
11 * $icon_theme_path
12 * $javascript_on
13 * $delayed_errors
14 * $frames
15 * $lang
16 * $page_title
17 * $header_tags
18 * $plugin_output
19 * $header_sent
20 * $body_tag_js
21 * $shortBoxName
e6e2e7fd 22 * $provider_link
83d1e1af 23 * $frame_top
24 * $urlMailbox
25 * $startMessage
26 * $hide_sm_attributions
27 * $uri
28 * $text
29 * $onclick
30 * $class
31 * $id
32 * $target
33 * $color
34 * $form_name
35 * $form_id
36 * $page_selector
37 * $page_selector_max
38 * $messagesPerPage
39 * $showall
40 * $end_msg
41 * $align
42 * $iNumberOfMessages
43 * $aOrder
44 * $aFormElements
45 * $sort
46 * $pageOffset
47 * $baseurl
48 * $aMessages
49 * $trash_folder
50 * $sent_folder
51 * $draft_folder
cd693cf4 52 * $thread_link_uri
53 * $thread_name
83d1e1af 54 * $php_self
55 * $mailbox
56 * $enablesort
57 * $icon_theme
58 * $use_icons
59 * $alt_index_colors
60 * $fancy_index_highlite
4127171c 61 * $aSortSupported
62 * $show_label_columns
83d1e1af 63 * $compact_paginator
64 * $aErrors
e0a6645e 65 * $checkall
02def6a1 66 * $preselected
969c1e9f 67 * $show_personal_names boolean When turned on, all email
68 * address fields should display
69 * the personal name and use the
70 * email address as a tool tip;
71 * When turned off, this logic
72 * should be inverted
47485591 73 * $accesskey_mailbox_toggle_selected The access key to use for the toggle all checkbox
74 * $accesskey_mailbox_thread The access key to use for the Thread/Unthread links
83d1e1af 75 *
22387c8d 76 * @copyright 1999-2017 The SquirrelMail Project Team
4b4abf93 77 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
49db257d 78 * @version $Id$
79 * @package squirrelmail
57d06b39 80 * @subpackage templates
49db257d 81 */
82
4127171c 83
f2e2aa7f 84/** add required includes */
a1d29fb8 85include_once(SM_PATH . 'functions/template/message_list_util.php');
49db257d 86
4127171c 87
49db257d 88/* retrieve the template vars */
89extract($t);
90
4127171c 91
a1d29fb8 92if (!empty($plugin_output['mailbox_index_before'])) echo $plugin_output['mailbox_index_before'];
49db257d 93
4127171c 94
49db257d 95/**
96 * Calculate string "Viewing message x to y (z total)"
97 */
98$msg_cnt_str = '';
99if ($pageOffset < $end_msg) {
100 $msg_cnt_str = sprintf(_("Viewing Messages: %s to %s (%s total)"),
4127171c 101 '<em>' . $pageOffset . '</em>',
102 '<em>' . $end_msg . '</em>',
103 $iNumberOfMessages);
49db257d 104} else if ($pageOffset == $end_msg) {
4127171c 105 $msg_cnt_str = sprintf(_("Viewing Message: %s (%s total)"),
106 '<em>' . $pageOffset . '</em>',
107 $iNumberOfMessages);
49db257d 108}
109
49db257d 110
583db309 111/**
29997535 112 * All icon functionality is now handled through $icon_theme_path.
113 * $icon_theme_path will contain the path to the user-selected theme. If it is
114 * NULL, the user and/or admin have turned off icons.
4127171c 115 */
116
583db309 117
49db257d 118?>
e3812cb2 119<div id="message_list">
a73c1312 120<form id="<?php echo $form_name;?>" name="<?php echo $form_name;?>" method="post" action="<?php echo $php_self;?>">
199a9ab8 121<input type="hidden" name="smtoken" value="<?php echo sm_generate_security_token(); ?>" />
e3812cb2 122<table class="table_empty" cellspacing="0">
49db257d 123 <tr>
e3812cb2 124 <td>
125 <table class="table_standard" cellspacing="0">
49db257d 126 <tr>
127 <td>
e3812cb2 128 <table class="table_empty" cellspacing="0">
49db257d 129 <tr>
e3812cb2 130 <td class="links_paginator">
49db257d 131<!-- paginator and thread link string -->
132 <?php
4127171c 133 /**
134 * The following line gets the output from a separate
135 * template altogether (called "paginator.tpl").
136 * $this is the Template class object.
49db257d 137 */
138 $paginator_str = $this->fetch('paginator.tpl');
cd693cf4 139 echo $paginator_str . '<small>[<a href="' . $thread_link_uri
47485591 140 . ($accesskey_mailbox_thread != 'NONE'
141 ? '" accesskey="' . $accesskey_mailbox_thread . '">'
142 : '">')
143 . $thread_name . '</a>]</small>&nbsp;&nbsp;';
00d0bdda 144 if (!empty($plugin_output['mailbox_paginator_after'])) echo $plugin_output['mailbox_paginator_after'];
145 ?>
49db257d 146<!-- end paginator and thread link string -->
49db257d 147 </td>
148<!-- message count string -->
e3812cb2 149 <td class="message_count"><?php echo $msg_cnt_str; ?></td>
49db257d 150<!-- end message count string -->
151 </tr>
152 </table>
153 </td>
154 </tr>
155<?php
156 if (count($aFormElements)) {
157?>
158<!-- start message list form control -->
d915a2ca 159 <tr class="message_list_controls">
49db257d 160 <td>
69a023cf 161 <?php
162 /**
163 * The following line gets the output from a separate
164 * template altogether (called "message_list_controls.tpl").
165 * $this is the Template class object.
166 */
167 $message_list_controls = $this->fetch('message_list_controls.tpl');
168 echo $message_list_controls ."\n"; ?>
49db257d 169 </td>
170 </tr>
171<!-- end message list form control -->
172<?php
173 } // if (count($aFormElements))
174?>
175 </table>
4127171c 176<?php if (!empty($plugin_output['mailbox_form_before'])) echo $plugin_output['mailbox_form_before']; ?>
49db257d 177 </td>
178 </tr>
e3812cb2 179 <tr><td class="spacer"></td></tr>
49db257d 180 <tr>
181 <td>
e3812cb2 182 <table class="table_messageListWrapper" cellspacing="0">
49db257d 183 <tr>
184 <td>
e3812cb2 185 <table class="table_messageList" cellspacing="0">
49db257d 186<!-- table header start -->
e3812cb2 187<?php
188/*
189 * As an FYI, Firefox on Windows seems to have an issue w/ putting wierd breaks while
ac858073 190 * rendering this table if we use THEAD and TH tags. No other browser or platform has
e3812cb2 191 * this issue. We will use TR/TD w/ another CSS class to work around this.
192 */
193?>
4127171c 194
e3812cb2 195 <tr class="headerRow">
4127171c 196
49db257d 197<?php
198 $aWidth = calcMessageListColumnWidth($aOrder);
199 foreach($aOrder as $iCol) {
49db257d 200?>
4127171c 201
e3812cb2 202 <td style="width:<?php echo $aWidth[$iCol]; ?>%">
4127171c 203
49db257d 204<?php
205 switch ($iCol) {
206 case SQM_COL_CHECK:
207 if ($javascript_on) {
e0a6645e 208 $checked = ($checkall ? ' checked="checked" ' : '');
47485591 209 $accesskey = ($accesskey_mailbox_toggle_selected == 'NONE' ? ''
210 : ' accesskey="' . $accesskey_mailbox_toggle_selected . '" ');
63d19712 211 echo '<input type="checkbox" name="toggleAll" id="toggleAll" title="'
212 . _("Toggle All") . '" onclick="toggle_all(\''
213 . $form_name . '\', \'msg\', ' . $fancy_index_highlite
47485591 214 . '); return false;" ' . $checked . $accesskey . '/>' . "\n";
49db257d 215 } else {
e0a6645e 216 $link = $baseurl
217 . "&amp;startMessage=$pageOffset&amp;checkall="
218 . ($checkall ? '0' : '1');
63d19712 219 echo "<a href=\"$link\">" . _("All") . '</a>';
49db257d 220 }
221 break;
ddf0ebe1 222 case SQM_COL_FROM:
223 echo '<label for="toggleAll">' . _("From") . "</label>\n";
224 break;
225 case SQM_COL_DATE: echo _("Date") . "\n"; break;
226 case SQM_COL_SUBJ: echo _("Subject") . "\n"; break;
583db309 227 case SQM_COL_FLAGS:
29997535 228 echo getIcon($icon_theme_path, 'msg_new.png', '&nbsp;', _("Message Flags")) . "\n";
229 break;
ddf0ebe1 230 case SQM_COL_SIZE: echo _("Size") . "\n"; break;
583db309 231 case SQM_COL_PRIO:
29997535 232 echo getIcon($icon_theme_path, 'prio_high.png', '!', _("Priority")) . "\n";
233 break;
583db309 234 case SQM_COL_ATTACHMENT:
29997535 235 echo getIcon($icon_theme_path, 'attach.png', '+', _("Attachment")) . "\n";
236 break;
ddf0ebe1 237 case SQM_COL_INT_DATE: echo _("Received") . "\n"; break;
e8b30fd3 238 case SQM_COL_TO:
239 echo '<label for="toggleAll">' . _("To") . "</label>\n";
240 break;
ddf0ebe1 241 case SQM_COL_CC: echo _("Cc") . "\n"; break;
242 case SQM_COL_BCC: echo _("Bcc") . "\n"; break;
49db257d 243 default: break;
244 }
245 // add the sort buttons
246 if (isset($aSortSupported[$iCol])) {
247 if ($sort == $aSortSupported[$iCol][0]) {
29997535 248 $newsort = $aSortSupported[$iCol][1];
249 $img = 'up_pointer.png';
8af5b50c 250 $text_icon = '&#8679;'; // U+21E7 UPWARDS WHITE ARROW
49db257d 251 } else if ($sort == $aSortSupported[$iCol][1]) {
29997535 252 $newsort = 0;
253 $img = 'down_pointer.png';
8af5b50c 254 $text_icon = '&#8681;'; // U+21E9 DOWNWARDS WHITE ARROW
49db257d 255 } else {
29997535 256 $newsort = $aSortSupported[$iCol][0];
257 $img = 'sort_none.png';
8af5b50c 258 $text_icon = '&#9723;'; // U+25FB WHITE MEDIUM SQUARE
49db257d 259 }
260 /* Now that we have everything figured out, show the actual button. */
8af5b50c 261 echo " <a href=\"$baseurl&amp;startMessage=1&amp;srt=$newsort\" style=\"text-decoration:none\">" .
6c68e276 262 getIcon($icon_theme_path, $img, $text_icon, _("Click here to change the sorting of the message list")) . "\n" .
29997535 263 '</a>';
49db257d 264 }
265?>
49db257d 266 </td>
267<?php
268 }
269?>
e3812cb2 270 </tr>
271<!-- end table header -->
49db257d 272
273<!-- Message headers start -->
274<?php
3d621333 275
49db257d 276 $i = 0;
277 $iColCnt = count($aOrder);
278 $sLine = '';
279
3d621333 280
49db257d 281 // this stuff does the auto row highlighting on mouseover
282 //
109e876c 283 if (!empty($plugin_output['checkbox_javascript_onclick'])) $checkbox_javascript_onclick = $plugin_output['checkbox_javascript_onclick'];
284 else $checkbox_javascript_onclick = '';
285
49db257d 286 if ($javascript_on && $fancy_index_highlite) {
109e876c 287 $checkbox_javascript = ' onclick="this.checked = !this.checked; ' . $checkbox_javascript_onclick . '"';
288 } else if (!empty($checkbox_javascript_onclick)) {
289 $checkbox_javascript = ' onclick="' . $checkbox_javascript_onclick . '"';
799ee2d5 290 } else {
291 $checkbox_javascript = '';
49db257d 292 }
3d621333 293
294
295 /**
296 * main message iteration loop
297 */
49db257d 298 foreach ($aMessages as $iUid => $aMsg) {
3d621333 299
49db257d 300 echo $sLine;
301
3d621333 302
49db257d 303/**
304* Display message header row in messages list
305*
306*/
307
308 $aColumns = $aMsg['columns'];
309
49db257d 310
311 /**
312 * Check the flags and set a class var.
313 */
314 if (isset($aColumns[SQM_COL_FLAGS])) {
315 $aFlags = $aColumns[SQM_COL_FLAGS]['value'];
29997535 316 $sFlags = getFlagIcon($aFlags, $icon_theme_path);
49db257d 317
49db257d 318 /* add the flag string to the value index */
319 $aColumns[SQM_COL_FLAGS]['value'] = $sFlags;
320 }
321 /**
322 * Check the priority column
323 */
324 if (isset($aColumns[SQM_COL_PRIO])) {
29997535 325 $sValue = getPriorityIcon($aColumns[SQM_COL_PRIO]['value'], $icon_theme_path);
49db257d 326 $aColumns[SQM_COL_PRIO]['value'] = $sValue;
327 }
328
329 /**
330 * Check the attachment column
331 */
332 if (isset($aColumns[SQM_COL_ATTACHMENT])) {
29997535 333 $sValue = getAttachmentIcon($aColumns[SQM_COL_ATTACHMENT]['value'], $icon_theme_path);
49db257d 334 $aColumns[SQM_COL_ATTACHMENT]['value'] = $sValue;
335 }
336
02def6a1 337 $class = (($checkall || in_array($iUid, $preselected)) && $javascript_on && $fancy_index_highlite ? 'clicked_even' : 'even');
e0a6645e 338 $non_clicked_class = 'even';
339
49db257d 340 /**
e3812cb2 341 * If alternating row colors is set, adapt the CSS class
49db257d 342 */
343 if (isset($alt_index_colors) && $alt_index_colors) {
344 if (!($i % 2)) {
02def6a1 345 $class = (($checkall || in_array($iUid, $preselected)) && $javascript_on && $fancy_index_highlite ? 'clicked_odd' : 'odd');
e0a6645e 346 $non_clicked_class = 'odd';
49db257d 347 }
348
349 }
9c928f05 350
351 /**
352 * Message Highlighting Functionality
353 */
e3812cb2 354 if (isset($aMsg['row']['color']))
355 {
02def6a1 356 if (($checkall || in_array($iUid, $preselected)) && $javascript_on && $fancy_index_highlite) {
9c928f05 357//FIXME: would be best not to use $color directly here; want to move this to be a CSS style-defined value only, but the problem is that this CSS class is being defined on the fly right here
358 $bgcolor = $color[16];
359 $class = 'clicked_misc'.$i;
360 } else {
361 $bgcolor = $aMsg['row']['color'];
362 $class = 'misc'.$i;
363 }
364 $non_clicked_class = 'misc'.$i;
365 $non_clicked_bgcolor = $aMsg['row']['color'];
366 }
367 else
368 {
369 $bgcolor = '';
370 $non_clicked_bgcolor = '';
e3812cb2 371 }
49db257d 372
373 $row_extra = '';
374
375 // this stuff does the auto row highlighting on mouseover
376 //
377 if ($javascript_on && $fancy_index_highlite) {
e0a6645e 378 $row_extra = ' onmouseover="rowOver(\''.$form_id . '_msg' . $i.'\');" onmouseout="setPointer(this, ' . $i . ', \'out\', \'' . $non_clicked_class . '\', \'mouse_over\', \'clicked\');" onmousedown="setPointer(this, ' . $i . ', \'click\', \'' . $non_clicked_class . '\', \'mouse_over\', \'clicked\');"';
49db257d 379 }
380 // this does the auto-checking of the checkbox no matter
381 // where on the row you click
382 //
383 $javascript_auto_click = '';
109e876c 384 $row_click_extra = '';
385 if (!empty($plugin_output['row_click_extra'])) $row_click_extra = $plugin_output['row_click_extra'];
49db257d 386 if ($javascript_on && $fancy_index_highlite) {
387 // include the form_id in order to show multiple messages lists. Otherwise id isn't unique
109e876c 388 $javascript_auto_click = " onmousedown=\"row_click('$form_id"."_msg$i', event, '$form_name', 'msg[' + $i + ']', '$row_click_extra')\"";
49db257d 389 }
390
9c928f05 391
e3812cb2 392/*
393 * Message Highlighting requires a unique CSS class declaration for proper
394 * mouseover functionality. There is no harm in doing this when the mouseover
395 * functionality is disabled
396 */
e0a6645e 397if ($class != 'even' && $class != 'odd'
9c928f05 398 && $class != 'clicked_even' && $class != 'clicked_odd')
e3812cb2 399{
400?>
401<style type="text/css">
402<!--
403.table_messageList tr.<?php echo $class; ?> { background:<?php echo $bgcolor; ?> }
404-->
405</style>
d7f26e6e 406<?php
e3812cb2 407}
9c928f05 408if ($non_clicked_class != 'even' && $non_clicked_class != 'odd'
409 && $non_clicked_class != 'clicked_even' && $non_clicked_class != 'clicked_odd')
410{
411?>
412<style type="text/css">
413<!--
414.table_messageList tr.<?php echo $non_clicked_class; ?> { background:<?php echo $non_clicked_bgcolor; ?> }
415-->
416</style>
417<?php
418}
419
420
49db257d 421?>
e3812cb2 422<tr <?php echo (empty($class) ? '' : 'class="'.$class.'" '); echo $row_extra;?>>
49db257d 423<?php
424 // flag style mumbo jumbo
425 $sPre = $sEnd = '';
bf9e5efb 426 if (isset($aColumns[SQM_COL_FLAGS])) {
1be82af6 427 if (!in_array('seen',$aFlags) || !$aFlags['seen']) {
e3812cb2 428 $sPre = '<span class="unread">'; $sEnd = '</span>';
f2e2aa7f 429 }
430 if (in_array('deleted',$aFlags) && $aFlags['deleted']) {
e3812cb2 431 $sPre = '<span class="deleted">' . $sPre;
432 $sEnd .= '</span>';
f2e2aa7f 433 } else {
434 if (in_array('flagged',$aFlags) && $aFlags['flagged']) {
e3812cb2 435 $sPre = '<span class="flagged">' . $sPre;
436 $sEnd .= '</span>';
f2e2aa7f 437 }
49db257d 438 }
439 }
440 /**
441 * Because the order of the columns and which columns to show is a user preference
442 * we have to do some php coding to display the columns in the right order
443 */
444 foreach ($aOrder as $iCol) {
6547ab43 445 if (in_array($iCol, $show_label_columns)) {
6d34ad62 446 $sLabelStart = '<label for="'.$form_id."_msg$i\">";
49db257d 447 $sLabelEnd = '</label>';
448 } else {
449 $sLabelStart = '';
450 $sLabelEnd = '';
451 }
02e830bd 452 $aCol = (isset($aColumns[$iCol])) ? $aColumns[$iCol] : array();
453 $title = (isset($aCol['title'])) ? $aCol['title'] : '';
454 $link = (isset($aCol['link'])) ? $aCol['link'] : '';
455 $link_extra = (isset($aCol['link_extra'])) ? $aCol['link_extra'] : '';
456 $onclick = (isset($aCol['onclick'])) ? $aCol['onclick'] : '';
02e830bd 457 $value = (isset($aCol['value'])) ? $aCol['value'] : '';
458 $target = (isset($aCol['target'])) ? $aCol['target'] : '';
969c1e9f 459 if (!$show_personal_names
79af43f5 460 && !empty($title)
969c1e9f 461 && ($iCol == SQM_COL_FROM
462 || $iCol == SQM_COL_TO
463 || $iCol == SQM_COL_CC
464 || $iCol == SQM_COL_BCC)) {
465 // swap title and value
466 $tmp = $title;
467 $title = $value;
468 $value = $tmp;
469 }
49db257d 470 if ($iCol !== SQM_COL_CHECK) {
471 $value = $sLabelStart.$sPre.$value.$sEnd.$sLabelEnd;
472 }
473
474
475 switch ($iCol) {
476 case SQM_COL_CHECK:
02def6a1 477 $checked = (($checkall || in_array($iUid, $preselected)) ? ' checked="checked" ' : '');
ac858073 478 if ($javascript_on) {
479 echo '<td class="col_check"'. $javascript_auto_click. '>' ?>
e0a6645e 480 <input type="checkbox" name="<?php echo "msg[$i]";?>" id="<?php echo $form_id."_msg$i";?>" value="<?php echo $iUid;?>" <?php echo $checkbox_javascript . $checked;?> /></td>
49db257d 481 <?php
ac858073 482 } else {
483 echo '<td class="col_check">';
ac858073 484 echo "<input type=\"checkbox\" name=\"msg[".$i."]\" id=\"".$form_id."_msg$i\" value=\"$iUid\" $checked/></td>";
485 }
49db257d 486 break;
487 case SQM_COL_SUBJ:
488 $indent = $aCol['indent'];
e3812cb2 489 $sText = " <td class=\"col_subject\" $javascript_auto_click>";
49db257d 490 if ($align['left'] == 'left') {
491 $sText .= str_repeat('&nbsp;&nbsp;',$indent);
492 }
493 $sText .= "<a href=\"$link\"";
02e830bd 494 if ($target) { $sText .= " target=\"$target\""; }
495 if ($title) { $sText .= " title=\"$title\""; }
496 if ($onclick) { $sText .= " onclick=\"$onclick\""; }
497 if ($link_extra) { $sText .= " $link_extra"; }
49db257d 498 if ($javascript_on && $fancy_index_highlite) {
109e876c 499 $sText .= " onmousedown=\"row_click('$form_id"."_msg$i', event, '$form_name', 'msg[' + $i + ']', '$row_click_extra'); setPointer(this." . (empty($bold) ? '' : 'parentNode.') .
e0a6645e 500 'parentNode.parentNode, ' . $i . ', \'click\', \''. $non_clicked_class. '\', \'mouse_over\', \'clicked\');"';
49db257d 501 }
3d621333 502 $sText .= ">"
503 . $value . '</a>';
49db257d 504 if ($align['left'] == 'right') {
505 $sText .= str_repeat('&nbsp;&nbsp;',$indent);
506 }
507 echo $sText."</td>\n";
508 break;
509 case SQM_COL_SIZE:
510 case SQM_COL_FLAGS:
3d621333 511 $sText = " <td class=\"col_flags\" $javascript_auto_click>"
512 . "$value</td>\n";
49db257d 513 echo $sText;
514 break;
515 case SQM_COL_INT_DATE:
516 case SQM_COL_DATE:
d72549cb 517 $sText = " <td class=\"col_date\" $javascript_auto_click";
518 if ($title) {$sText .= " title=\"$title\"";}
519 $sText .= ">" . $value. "</td>\n";
49db257d 520 echo $sText;
521 break;
522 default:
e3812cb2 523 $sText = " <td class=\"col_text\" $javascript_auto_click";
49db257d 524 if ($link) {
525 $sText .= "><a href=\"$link\"";
526 if ($target) { $sText .= " target=\"$target\"";}
527 if ($title) { $sText .= " title=\"$title\"" ;}
528 $sText .= ">";
529 } else {
530 if ($title) {$sText .= " title=\"$title\"";}
531 $sText .= ">";
532 }
533 $sText .= $value;
534 if ($link) { $sText .= '</a>';}
535 echo $sText."</td>\n";
536 break;
537 }
538 }
3d621333 539
540 echo '</tr>';
e3812cb2 541 $sLine = "<tr><td colspan=\"$iColCnt\" class=\"spacer\"></td></tr>\n";
49db257d 542 ++$i;
543
544/*
545 * End displaying row part
546 */
547 }
548
549?>
550<!-- Message headers end -->
551 </table>
552 </td>
553 </tr>
554 </table>
555 </td>
556 </tr>
e3812cb2 557 <tr><td class="spacer"></td></tr>
49db257d 558 <tr>
559 <td>
e3812cb2 560 <table class="table_standard" cellspacing="0">
49db257d 561 <tr>
562 <td>
e3812cb2 563 <table class="table_empty" cellspacing="0">
49db257d 564 <tr>
0399a40b 565 <td class="links_paginator"><?php
566 /**
567 * The following line gets the output from a separate
568 * template altogether (called "paginator.tpl").
569 * $this is the Template class object.
570 */
571 $paginator_str = $this->fetch('paginator.tpl');
572 echo $paginator_str;
00d0bdda 573 if (!empty($plugin_output['mailbox_paginator_after'])) echo $plugin_output['mailbox_paginator_after'];
0399a40b 574 ?></td>
e3812cb2 575 <td class="message_count"><?php echo $msg_cnt_str; ?></td>
49db257d 576 </tr>
577 </table>
578 </td>
579 </tr>
580 </table>
581 </td>
582 </tr>
583 <tr>
0ab04626 584 <td align="right">
3d621333 585<?php if (!empty($plugin_output['mailbox_index_after'])) echo $plugin_output['mailbox_index_after']; ?>
49db257d 586 </td>
587 </tr>
588 </table>
cd0a9317 589</form>
e3812cb2 590</div>
e6e2e7fd 591
592<?php if (!$hide_sm_attributions): ?>
aff09f80 593<p class="sqm_squirrelcopyright">&copy; <?php echo SM_COPYRIGHT ?> The SquirrelMail Project Team - <a href="about.php">About SquirrelMail</a></p>
e6e2e7fd 594<?php endif; ?>