Indicate allowed max. attachment size in compose screen (#1485030)
| | |
| | | - Enable export of address book contacts as vCard |
| | | - Respect Content-Location headers in multipart/related messages according to RFC2110 (#1484946) |
| | | - Applied mime_decode patch by David Lublink |
| | | - Allowed max. attachment size now indicated in compose screen (#1485030) |
| | | |
| | | 2008/09/04 (alec) |
| | | ---------- |
| | |
| | | $labels['plaintoggle'] = 'Klartext'; |
| | | $labels['savesentmessagein'] = 'Nachricht speichern in'; |
| | | $labels['dontsave'] = 'nicht speichern'; |
| | | $labels['maxuploadsize'] = 'Maximal erlaubte Dateigrösse ist $size'; |
| | | $labels['addcc'] = 'Cc hinzufügen'; |
| | | $labels['addbcc'] = 'Bcc hinzufügen'; |
| | | $labels['addreplyto'] = 'Antwortadresse hinzufügen'; |
| | |
| | | $labels['plaintoggle'] = 'Nur-Text'; |
| | | $labels['savesentmessagein'] = 'Nachricht speichern in'; |
| | | $labels['dontsave'] = 'nicht speichern'; |
| | | $labels['maxuploadsize'] = 'Maximal erlaubte Dateigrösse ist $size'; |
| | | $labels['addcc'] = 'Cc hinzufügen'; |
| | | $labels['addbcc'] = 'Bcc hinzufügen'; |
| | | $labels['addreplyto'] = 'Antwortadresse hinzufügen'; |
| | |
| | | $labels['plaintoggle'] = 'Plain text'; |
| | | $labels['savesentmessagein'] = 'Save sent message in'; |
| | | $labels['dontsave'] = 'don\'t save'; |
| | | $labels['maxuploadsize'] = 'Maximum allowed file size is $size'; |
| | | |
| | | $labels['addcc'] = 'Add Cc'; |
| | | $labels['addbcc'] = 'Add Bcc'; |
| | |
| | | |
| | | $out = html::div($attrib, |
| | | $OUTPUT->form_tag(array('name' => 'form', 'method' => 'post', 'enctype' => 'multipart/form-data')) . |
| | | rcmail_compose_attachment_field(array()) . html::br() . |
| | | $button->show(rcube_label('close'), array('onclick' => "document.getElementById('$attrib[id]').style.visibility='hidden'")) . |
| | | $button->show(rcube_label('upload'), array('onclick' => JS_OBJECT_NAME . ".command('send-attachment', this.form)")) |
| | | html::div(null, rcmail_compose_attachment_field(array())) . |
| | | html::div('hint', rcube_label(array('name' => 'maxuploadsize', 'vars' => array('size' => show_bytes(parse_bytes(ini_get('upload_max_filesize'))))))) . |
| | | html::div('buttons', |
| | | $button->show(rcube_label('close'), array('onclick' => "document.getElementById('$attrib[id]').style.visibility='hidden'")) . ' ' . |
| | | $button->show(rcube_label('upload'), array('onclick' => JS_OBJECT_NAME . ".command('send-attachment', this.form)"))) |
| | | ); |
| | | |
| | | |
| | |
| | | top: 150px; |
| | | left: 20px; |
| | | z-index: 200; |
| | | padding: 8px; |
| | | padding: 6px; |
| | | visibility: hidden; |
| | | border: 1px solid #CCCCCC; |
| | | background-color: #F9F9F9; |
| | | } |
| | | |
| | | #attachment-form input.button |
| | | #attachment-form div |
| | | { |
| | | margin-top: 8px; |
| | | padding: 2px; |
| | | } |
| | | |
| | | #attachment-form div.buttons |
| | | { |
| | | margin-top: 4px; |
| | | } |