There are too many modified files being committed without the copyright year being...
[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 &copy; 1999-2009 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">
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 <input type="file" name="attachfile" size="48" <?php if ($accesskey_compose_attach_browse != 'NONE') echo 'accesskey="' . $accesskey_compose_attach_browse . '" '; ?>/>
32 &nbsp;
33 <input type="submit" name="attach" <?php if ($accesskey_compose_attach != 'NONE') echo 'accesskey="' . $accesskey_compose_attach . '" '; ?>value="<?php echo _("Attach"); ?>" />
34 &nbsp;
35 <?php
36 if($max_file_size != -1) {
37 ?>
38 <input type="hidden" name="MAX_FILE_SIZE" value="<?php echo $max_file_size; ?>" />
39 (<?php echo _("Max."); ?> <?php echo humanReadableSize($max_file_size); ?>)
40 <?php
41 }
42 ?>
43 </td>
44 </tr>
45 <?php
46 $attachment_count = 1;
47 foreach ($attachments as $attach) {
48 ?>
49 <tr class="attachment">
50 <td class="fieldName" style="width: 1%">
51 <input type="checkbox" name="delete[]" accesskey="<?php echo ($attachment_count % 10); ?>" value="<?php echo $attach['Key']; ?>" />
52 </td>
53 <td class="fieldValue">
54 <?php echo $attach['FileName']; ?> - <?php echo $attach['ContentType']; ?> (<?php echo humanReadableSize($attach['Size']); ?>)
55 </td>
56 </tr>
57 <?php
58 $attachment_count++;
59 }
60
61 if (count($attachments) > 0) {
62 ?>
63 <tr class="header">
64 <td colspan="2">
65 <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"); ?>" />
66 </td>
67 </tr>
68 <?php
69 }
70 ?>
71 </table>
72 </div>