Even better HTML email content style containment
[squirrelmail.git] / templates / default / read_menubar_buttons.tpl
1 <?php
2 /**
3 * read_menubar_buttons.tpl
4 *
5 * Tempalte for displaying the action buttons, e.g. Reply, Reply All, Forward,
6 * etc., while reading a message. When combined with the read_menubar_nav template,
7 * the entire menu bar is displayed.
8 *
9 * The following variables are available in this template:
10 * $nav_on_top - boolean TRUE if the navigation buttons are on top of the
11 * action buttons generated here.
12 * $prev_href - URL to move to the previous message. Empty if not avilable.
13 * $up_href - URL to move up in the message. Empty if not available.
14 * $next_href - URL to move to the next nessage. Empty when N/A.
15 * $del_prev_href - URL to delete this message and move to the next one. Empty if N/A.
16 * $del_next_href - URL to delete this message and move to the next one. Empty if N/A.
17 * $view_msg_href - URL to go back to the main message. Empty if N/A.
18 * $msg_list_href - URL to go to the message list.
19 * $search_href - URL to go back to the serach results. Empty if N/A.
20 * $form_extra - Extra elements that will be added to the <form> tag verbatim
21 * $form_method - The value of the <form>'s method attribute (optional, may be blank)
22 * $form_target - The value of the <form>'s target attribute (optional, may be blank)
23 * $form_onsubmit - The value of the <form>'s onsubmit handler (optional, may be blank)
24 * $compose_href - Base URL to forward, reply, etc. Note that a specific action
25 * must also be given by the form or in this URL.
26 * $button_onclick - Onclick event string for all buttons
27 * $forward_as_attachment_enabled - boolean TRUE if forwarding as attachments
28 * has been enabled.
29 * $can_resume_draft - boolean TRUE if the "resume draft" is legitimate for
30 * this message.
31 * $can_edit_as_new - boolean TRUE if the "reasume as new" action is legitimate
32 * for this message
33 * $mailboxes - array containing list of mailboxes available for move/copy action.
34 * $can_be_deleted - boolean TRUE if this message can be deleted.
35 * $can_be_moved - boolean TRUE if this message can be moved.
36 * $cab_be_copied - boolean TRUE if this message can be copied to another folder.
37 * $move_delete_form_action - the value for the ACTION attribute of forms to
38 * move, copy or delete a message
39 * $delete_form_extra - additional input elements needed by the DELETE form
40 * $move_form_extra - additional input elements needed by the MOVE form.
41 * $last_move_target - the last folder that a message was moved/copied to.
42 * $accesskey_read_msg_reply - The accesskey to be used for the Reply button
43 * $accesskey_read_msg_reply_all - The accesskey to be used for the Reply All button
44 * $accesskey_read_msg_forward - The accesskey to be used for the Forward button
45 * $accesskey_read_msg_as_attach - The accesskey to be used for the As Attachment checkbox
46 * $accesskey_read_msg_delete - The accesskey to be used for the Delete button
47 * $accesskey_read_msg_bypass_trash - The accesskey to be used for the Bypass Trash checkbox
48 * $accesskey_read_msg_move_to - The accesskey to be used for the folder select list
49 * $accesskey_read_msg_move - The accesskey to be used for the Move button
50 * $accesskey_read_msg_copy - The accesskey to be used for the Copy button
51 *
52 *
53 * @copyright 1999-2019 The SquirrelMail Project Team
54 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
55 * @version $Id$
56 * @package squirrelmail
57 * @subpackage templates
58 */
59
60 /** add required includes **/
61
62 /** extract template variables **/
63 extract($t);
64
65 /*FIXME: This is a place where Marc's idea for putting all the buttons and links and other widgets into an array is sorely needed instead of hard-coding everything. Whomever implements that, PLEASE, PLEASE look at how the preview pane plugin code is used in this same template file for the *default_advanced* set to change some links and buttons and make sure your implementation can support it (tip: it may or may not be OK to let a plugin do the modification of the widgets, since a template set can turn on the needed plugin, but that might not be the most clear way to solve said issue).*/
66
67 /** Begin template **/
68 if ($nav_on_top) {
69 $table_class = 'bottom';
70 $plugin_hook = 'read_body_menu_buttons_top';
71 } else {
72 $table_class = 'top';
73 $plugin_hook = 'read_body_menu_buttons_bottom';
74 }
75 ?>
76 <div class="readMenuBar">
77 <table class="<?php echo $table_class; ?>" cellspacing="0">
78 <tr class="buttons">
79 <td class="buttons">
80 <form name="composeForm" action="<?php
81 echo $compose_href . '" '
82 . (!empty($form_method) ? 'method="' . $form_method . '" ' : '')
83 . (!empty($form_target) ? 'target="' . $form_target . '" ' : '')
84 . (!empty($form_onsubmit) ? 'onsubmit="' . $form_onsubmit . '" ' : '')
85 . $form_extra; ?> >
86 <small>
87 <?php
88 if ($can_resume_draft) {
89 ?>
90 <input type="submit" name="smaction_draft" value="<?php echo _("Resume Draft"); ?>" onclick="<?php echo $button_onclick; ?>" />&nbsp;
91 <?php
92 } elseif ($can_edit_as_new) {
93 ?>
94 <input type="submit" name="smaction_edit_new" value="<?php echo _("Edit Message as New"); ?>" onclick="<?php echo $button_onclick; ?>" />&nbsp;
95 <?php
96 }
97 ?>
98 <input type="submit" name="smaction_reply" <?php if ($accesskey_read_msg_reply != 'NONE') echo 'accesskey="' . $accesskey_read_msg_reply . '" '; ?>value="<?php echo _("Reply"); ?>" onclick="<?php echo $button_onclick; ?>" />&nbsp;
99 <input type="submit" name="smaction_reply_all" <?php if ($accesskey_read_msg_reply_all != 'NONE') echo 'accesskey="' . $accesskey_read_msg_reply_all . '" '; ?>value="<?php echo _("Reply All"); ?>" onclick="<?php echo $button_onclick; ?>" />
100 &nbsp;&nbsp;|&nbsp;&nbsp;
101 <input type="submit" name="smaction_forward" <?php if ($accesskey_read_msg_forward != 'NONE') echo 'accesskey="' . $accesskey_read_msg_forward . '" '; ?>value="<?php echo _("Forward"); ?>" onclick="<?php echo $button_onclick; ?>" />
102 <?php
103 if ($forward_as_attachment_enabled) {
104 ?>
105 <input type="checkbox" name="smaction_attache" id="smaction_attache" <?php if ($accesskey_read_msg_as_attach != 'NONE') echo 'accesskey="' . $accesskey_read_msg_as_attach . '" '; ?>/>
106 <label for="smaction_attache"><?php echo _("As Attachment"); ?></label>
107 <?php
108 }
109 ?>
110 </small>
111 </form>
112 &nbsp;&nbsp;|&nbsp;&nbsp;
113 <?php
114 if ($can_be_deleted) {
115 ?>
116 <form name="deleteMessageForm" action="<?php echo $move_delete_form_action; ?>" method="post">
117 <input type="hidden" name="smtoken" value="<?php echo sm_generate_security_token(); ?>" />
118 <?php echo $delete_form_extra; ?>
119 <small>
120 <input type="submit" name="delete" <?php if ($accesskey_read_msg_delete != 'NONE') echo 'accesskey="' . $accesskey_read_msg_delete . '" '; ?>value="<?php echo _("Delete"); ?>" />
121 <input type="checkbox" name="bypass_trash" id="bypass_trash" <?php if ($accesskey_read_msg_bypass_trash != 'NONE') echo 'accesskey="' . $accesskey_read_msg_bypass_trash . '" '; ?>/><label for="bypass_trash"><?php echo _("Bypass Trash"); ?></label>
122 </small>
123 </form>
124 <?php
125 }
126 ?>
127 <?php if(!empty($plugin_output[$plugin_hook])) echo $plugin_output[$plugin_hook]; ?>
128 </td>
129 <td class="move">
130 <?php
131 if ($can_be_moved) {
132 ?>
133 <form name="moveMessageForm" action="<?php echo $move_delete_form_action; ?>" method="post">
134 <input type="hidden" name="smtoken" value="<?php echo sm_generate_security_token(); ?>" />
135 <?php echo $move_form_extra; ?>
136 <small>
137 <?php echo _("Move To"); ?>:
138 <select <?php if ($accesskey_read_msg_move_to != 'NONE') echo 'accesskey="' . $accesskey_read_msg_move_to . '" '; ?>name="targetMailbox">
139 <?php
140 foreach ($mailboxes as $value=>$option) {
141 echo '<option value="'. $value .'"' . ($value==$last_move_target ? ' selected="selected"' : '').'>' . $option .'</option>'."\n";
142 }
143 ?>
144 </select>
145 <input type="submit" name="moveButton" <?php if ($accesskey_read_msg_move != 'NONE') echo 'accesskey="' . $accesskey_read_msg_move . '" '; ?>value="<?php echo _("Move"); ?>" />
146 <?php
147 if ($can_be_copied) {
148 ?>
149 <input type="submit" name="copyButton" <?php if ($accesskey_read_msg_copy != 'NONE') echo 'accesskey="' . $accesskey_read_msg_copy . '" '; ?>value="<?php echo _("Copy"); ?>" />
150 <?php
151 }
152 ?>
153 </small>
154 </form>
155 <?php
156 }
157 ?>
158 </td>
159 </tr>
160 </table>
161 </div>