Remove ability for HTML emails to use CSS positioning to overlay SquirrelMail content...
[squirrelmail.git] / templates / default / read_menubar_buttons.tpl
CommitLineData
3cb5a0bb 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.
89a067ff 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)
3cb5a0bb 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.
0be2024f 26 * $button_onclick - Onclick event string for all buttons
3cb5a0bb 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.
8949acd6 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
3cb5a0bb 51 *
52 *
d4e46166 53 * @copyright &copy; 1999-2009 The SquirrelMail Project Team
3cb5a0bb 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 **/
63extract($t);
64
89a067ff 65/*FIXME: This is a place where Marc's idea for putting all the buttons and
66 links and other widgets into an array is sorely needed instead of
67 hard-coding everything. Whomever implements that, PLEASE, PLEASE
68 look at how the preview pane plugin code is used in this same template
69 file for the *default_advanced* set to change some links and buttons
70 and make sure your implementation can support it (tip: it may or may
71 not be OK to let a plugin do the modification of the widgets, since
72 a template set can turn on the needed plugin, but that might not be
73 the most clear way to solve said issue).*/
74
75
3cb5a0bb 76/** Begin template **/
77if ($nav_on_top) {
78 $table_class = 'bottom';
79 $plugin_hook = 'read_body_menu_buttons_top';
80} else {
81 $table_class = 'top';
82 $plugin_hook = 'read_body_menu_buttons_bottom';
83}
84?>
85<div class="readMenuBar">
86<table class="<?php echo $table_class; ?>" cellspacing="0">
87 <tr class="buttons">
88 <td class="buttons">
89a067ff 89 <form name="composeForm" action="<?php
90 echo $compose_href . '" '
91 . (!empty($form_method) ? 'method="' . $form_method . '" ' : '')
92 . (!empty($form_target) ? 'target="' . $form_target . '" ' : '')
93 . (!empty($form_onsubmit) ? 'onsubmit="' . $form_onsubmit . '" ' : '')
94 . $form_extra; ?> >
3cb5a0bb 95 <small>
96 <?php
97 if ($can_resume_draft) {
98 ?>
0be2024f 99 <input type="submit" name="smaction_draft" value="<?php echo _("Resume Draft"); ?>" onclick="<?php echo $button_onclick; ?>" />&nbsp;
3cb5a0bb 100 <?php
101 } elseif ($can_edit_as_new) {
102 ?>
0be2024f 103 <input type="submit" name="smaction_edit_new" value="<?php echo _("Edit Message as New"); ?>" onclick="<?php echo $button_onclick; ?>" />&nbsp;
3cb5a0bb 104 <?php
105 }
106 ?>
8949acd6 107 <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;
108 <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; ?>" />
3cb5a0bb 109 &nbsp;&nbsp;|&nbsp;&nbsp;
8949acd6 110 <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; ?>" />
3cb5a0bb 111 <?php
112 if ($forward_as_attachment_enabled) {
113 ?>
8949acd6 114 <input type="checkbox" name="smaction_attache" id="smaction_attache" <?php if ($accesskey_read_msg_as_attach != 'NONE') echo 'accesskey="' . $accesskey_read_msg_as_attach . '" '; ?>/>
3cb5a0bb 115 <label for="smaction_attache"><?php echo _("As Attachment"); ?></label>
116 <?php
117 }
118 ?>
119 </small>
120 </form>
121 &nbsp;&nbsp;|&nbsp;&nbsp;
122 <?php
123 if ($can_be_deleted) {
124 ?>
12b5083f 125 <form name="deleteMessageForm" action="<?php echo $move_delete_form_action; ?>" method="post">
3cb5a0bb 126 <?php echo $delete_form_extra; ?>
127 <small>
8949acd6 128 <input type="submit" name="delete" <?php if ($accesskey_read_msg_delete != 'NONE') echo 'accesskey="' . $accesskey_read_msg_delete . '" '; ?>value="<?php echo _("Delete"); ?>" />
129 <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>
3cb5a0bb 130 </small>
131 </form>
132 <?php
133 }
134 ?>
135 <?php if(!empty($plugin_output[$plugin_hook])) echo $plugin_output[$plugin_hook]; ?>
136 </td>
137 <td class="move">
138 <?php
139 if ($can_be_moved) {
140 ?>
12b5083f 141 <form name="moveMessageForm" action="<?php echo $move_delete_form_action; ?>" method="post">
3cb5a0bb 142 <?php echo $move_form_extra; ?>
143 <small>
144 <?php echo _("Move To"); ?>:
8949acd6 145 <select <?php if ($accesskey_read_msg_move_to != 'NONE') echo 'accesskey="' . $accesskey_read_msg_move_to . '" '; ?>name="targetMailbox">
3cb5a0bb 146 <?php
147 foreach ($mailboxes as $value=>$option) {
148 echo '<option value="'. $value .'"' . ($value==$last_move_target ? ' selected="selected"' : '').'>' . $option .'</option>'."\n";
149 }
150 ?>
151 </select>
8949acd6 152 <input type="submit" name="moveButton" <?php if ($accesskey_read_msg_move != 'NONE') echo 'accesskey="' . $accesskey_read_msg_move . '" '; ?>value="<?php echo _("Move"); ?>" />
3cb5a0bb 153 <?php
154 if ($can_be_copied) {
155 ?>
8949acd6 156 <input type="submit" name="copyButton" <?php if ($accesskey_read_msg_copy != 'NONE') echo 'accesskey="' . $accesskey_read_msg_copy . '" '; ?>value="<?php echo _("Copy"); ?>" />
3cb5a0bb 157 <?php
158 }
159 ?>
160 </small>
161 </form>
162 <?php
163 }
164 ?>
165 </td>
166 </tr>
167</table>
168</div>