123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 |
- <?php
- /**
- * read_menubar_nav.tpl
- *
- * Template to generate the nav buttons while reading a message, e.g. "Previous",
- * "Next", "Delete & Previous", etc. When used in conjunction with the
- * read_menubar_nav tempalte, the entire menubar is generated.
- *
- * The following variables are available in this template:
- * $nav_on_top - boolean TRUE if the navigation buttons are on top of the
- * action buttons generated here.
- * $prev_href - URL to move to the previous message. Empty if not avilable.
- * $up_href - URL to move up in the message. Empty if not available.
- * $next_href - URL to move to the next nessage. Empty when N/A.
- * $del_prev_href - URL to delete this message and move to the next one. Empty if N/A.
- * $del_next_href - URL to delete this message and move to the next one. Empty if N/A.
- * $view_msg_href - URL to go back to the main message. Empty if N/A.
- * $msg_list_href - URL to go to the message list.
- * $search_href - URL to go back to the serach results. Empty if N/A.
- * $form_extra - Extra elements required by the forms to delete, move or copy
- * $compose_href - Base URL to forward, reply, etc. Note that a specific action
- * must also be given by the form or in this URL.
- * $on_click - Onclick event string for all buttons
- * $forward_as_attachment_enabled - boolean TRUE if forwarding as attachments
- * has been enabled.
- * $can_resume_draft - boolean TRUE if the "resume draft" is legitimate for
- * this message.
- * $can_edit_as_new - boolean TRUE if the "reasume as new" action is legitimate
- * for this message
- * $mailboxes - array containing list of mailboxes available for move/copy action.
- * $can_be_deleted - boolean TRUE if this message can be deleted.
- * $can_be_moved - boolean TRUE if this message can be moved.
- * $cab_be_copied - boolean TRUE if this message can be copied to another folder.
- * $move_delete_form_action - the value for the ACTION attribute of forms to
- * move, copy or delete a message
- * $delete_form_extra - additional input elements needed by the DELETE form
- * $move_form_extra - additional input elements needed by the MOVE form.
- * $last_move_target - the last folder that a message was moved/copied to.
- * *
- * @copyright © 1999-2006 The SquirrelMail Project Team
- * @license http://opensource.org/licenses/gpl-license.php GNU Public License
- * @version $Id: read_menubar_nav.tpl 11850 2006-10-06 21:57:26Z stevetruckstuff $
- * @package squirrelmail
- * @subpackage templates
- */
- /** add required includes **/
- /** extract template variables **/
- extract($t);
- /*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 here 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).*/
- /** preview pane prep */
- global $data_dir, $username, $base_uri;
- $pp_refresh_message_list = getPref($data_dir, $username, 'pp_refresh_message_list', 1);
- $use_previewPane = getPref($data_dir, $username, 'use_previewPane', 0);
- $show_preview_pane = checkForJavascript() && $use_previewPane;
- $empty_frame_uri = $base_uri . 'plugins/preview_pane/empty_frame.php';
- /** Begin template **/
- if ($nav_on_top) {
- $table_class = 'top';
- $plugin_hook = 'read_body_menu_nav_top';
- } else {
- $table_class = 'bottom';
- $plugin_hook = 'read_body_menu_nav_bottom';
- }
- ?>
- <div class="readMenuBar">
- <table cellspacing="0" class="<?php echo $table_class; ?>">
- <tr class="nav">
- <td class="nav">
- <small>
- [
- <?php
- if (empty($prev_href)) {
- echo _("Previous");
- } else {
- ?>
- <a href="<?php echo $prev_href; ?><?php
- /** if preview pane turned on with "always refresh message list",
- refresh message list frame too, but only if we are in the bottom frame!
- and make sure the refresh is conditional upon the seen flag of the
- message after it is loaded (see read_headers.tpl) */
- if ($show_preview_pane && $pp_refresh_message_list)
- // old code: unconditional refresh
- //echo ' onclick="if (self.name == \'bottom\') { refresh_message_list(); } "';
- echo '&pp_rr=1';
- echo '">' . _("Previous"); ?></a>
- <?php
- }
- ?> |
- <?php
- if (empty($up_href)) {
- # Do nothing
- } else {
- ?>
- <a href="<?php echo $up_href; ?>"><?php echo _("Up"); ?></a> |
- <?php
- }
- if (empty($next_href)) {
- echo _("Next");
- } else {
- ?>
- <a href="<?php echo $next_href; ?><?php
- /** if preview pane turned on with "always refresh message list",
- refresh message list frame too, but only if we are in the bottom frame!
- and make sure the refresh is conditional upon the seen flag of the
- message after it is loaded (see read_headers.tpl) */
- if ($show_preview_pane && $pp_refresh_message_list)
- // old code: unconditional refresh
- //echo ' onclick="if (self.name == \'bottom\') { refresh_message_list(); } "';
- echo '&pp_rr=1';
- echo '">' . _("Next"); ?></a>
- <?php
- }
- ?>
- ]
-
- <?php
- if (!empty($del_prev_href) || !empty($del_next_href)) {
- ?>
- [
- <?php
- if (empty($del_prev_href)) {
- echo _("Delete & Previous");
- } else {
- ?>
- <a href="<?php echo $del_prev_href; ?>"<?php
- /** if preview pane turned on with "always refresh message list",
- refresh message list frame too, but only if we are in the bottom frame! */
- if ($show_preview_pane && $pp_refresh_message_list)
- echo ' onclick="if (self.name == \'bottom\') { refresh_message_list(); } "';
- echo '>' . _("Delete & Previous"); ?></a>
- <?php
- }
- ?>
- |
- <?php
- if (empty($del_next_href)) {
- echo _("Delete & Next");
- } else {
- ?>
- <a href="<?php echo $del_next_href; ?>"<?php
- /** if preview pane turned on with "always refresh message list",
- refresh message list frame too, but only if we are in the bottom frame! */
- if ($show_preview_pane && $pp_refresh_message_list)
- echo ' onclick="if (self.name == \'bottom\') { refresh_message_list(); } "';
- echo '>' . _("Delete & Next"); ?></a>
- <?php
- }
- ?>
- ]
-
- <?php
- }
-
- if (!empty($view_msg_href)) {
- ?>
- [ <a href="<?php echo $view_msg_href; ?>"><?php echo _("View Message"); ?></a> ]
-
- <?php
- }
- ?>
- [ <a href="<?php echo $message_list_href; ?>"<?php
- /** if preview pane turned on, retarget to message list frame & clear
- bottom frame, but only if we are in the bottom frame! */
- if ($show_preview_pane)
- echo ' onclick="if (self.name == \'bottom\') { parent.right.document.location=\'' . $message_list_href . '\'; document.location=\'' . $empty_frame_uri . '\'; return false; } "';
- echo '>' . _("Message List"); ?></a>
- <?php
- if (!empty($search_href)) {
- ?>
- | <a href="<?php echo $search_href; ?>"><?php echo _("Search Results"); ?></a>
- <?php
- }
- ?>
- ]
- </small>
- <?php if(!empty($plugin_output[$plugin_hook])) echo $plugin_output[$plugin_hook]; ?>
- </td>
- </tr>
- </table>
- </div>
|