5f210be4d8fb8faf300f6832c3c06c2e9cb6a253
[squirrelmail.git] / templates / default / compose_attachments.tpl
1 <?php
2 /**
3 * compose_attachments.tpl
4 *
5 * Description
6 *
7 * The following variables are available in this template:
8 * $accesskey_compose_attach_browse - The access key to be used for the Browse button
9 * $accesskey_compose_attach - The access key to be used for the Attach button
10 * $accesskey_compose_delete_attach - The access key to be used for the Delete Attachments button
11 *
12 * @copyright 1999-2019 The SquirrelMail Project Team
13 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
14 * @version $Id$
15 * @package squirrelmail
16 * @subpackage templates
17 */
18
19 /** extract template variables **/
20 extract($t);
21
22 /** Begin template **/
23 ?>
24 <div class="compose">
25 <table cellspacing="0" class="table1" id="attachment_table">
26 <tr class="header">
27 <td class="fieldName" style="width: 1%; white-space: nowrap;">
28 <?php echo _("New attachment");?>:
29 </td>
30 <td class="fieldValue">
31 <?php
32 if($max_file_size != -1) {
33 echo '<input type="hidden" name="MAX_FILE_SIZE" value="' . $max_file_size . '" />';
34 }
35 ?>
36 <input type="file" name="attachfile" size="48" <?php if ($accesskey_compose_attach_browse != 'NONE') echo 'accesskey="' . $accesskey_compose_attach_browse . '" '; ?>/>
37 &nbsp;
38 <input type="submit" name="attach" <?php if ($accesskey_compose_attach != 'NONE') echo 'accesskey="' . $accesskey_compose_attach . '" '; ?>value="<?php echo _("Attach"); ?>" />
39 &nbsp;
40 <?php
41 if($max_file_size != -1) {
42 echo '(' . _("Max.") . ' ' . humanReadableSize($max_file_size) . ')';
43 }
44 if (!empty($plugin_output['add_attachment_notes'])) echo $plugin_output['add_attachment_notes'];
45 ?>
46 </td>
47 </tr>
48 <?php
49 if (!empty($plugin_output['attachment_inputs'])) echo $plugin_output['attachment_inputs'];
50 $attachment_count = 1;
51 foreach ($attachments as $attach) {
52 ?>
53 <tr class="attachment">
54 <td class="fieldName" style="width: 1%">
55 <input type="checkbox" name="delete[]" id="delete<?php echo $attachment_count; ?>" accesskey="<?php echo ($attachment_count % 10); ?>" value="<?php echo $attach['Key']; ?>" />
56 </td>
57 <td class="fieldValue"><label for="delete<?php echo $attachment_count; ?>">
58 <?php echo $attach['FileName']; ?> - <?php echo $attach['ContentType']; ?> (<?php echo humanReadableSize($attach['Size']); ?>)
59 </label></td>
60 </tr>
61 <?php
62 $attachment_count++;
63 }
64
65 if (count($attachments) > 0) {
66 ?>
67 <tr class="header">
68 <td colspan="2">
69 <input type="submit" name="do_delete" <?php if ($accesskey_compose_delete_attach != 'NONE') echo 'accesskey="' . $accesskey_compose_delete_attach . '" '; ?>value="<?php echo _("Delete Selected Attachments"); ?>" />
70 </td>
71 </tr>
72 <?php
73 }
74 ?>
75 </table>
76 </div>