diff options
author | alecpl <alec@alec.pl> | 2010-03-19 11:20:12 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-03-19 11:20:12 +0000 |
commit | 9b3fdc25c171d2b2461af42224ea16ad6c032c49 (patch) | |
tree | d7414b8cf6c373439b66edcdb9a0b54837bdd429 /program/steps | |
parent | f093291bfdac81dd6f68fb7cebc9a871c9f9bf04 (diff) |
- Implemented messages copying using drag&drop + SHIFT (#1484086)
Diffstat (limited to 'program/steps')
-rw-r--r-- | program/steps/mail/copy.inc | 59 | ||||
-rw-r--r-- | program/steps/mail/func.inc | 5 |
2 files changed, 62 insertions, 2 deletions
diff --git a/program/steps/mail/copy.inc b/program/steps/mail/copy.inc new file mode 100644 index 000000000..e2270a75f --- /dev/null +++ b/program/steps/mail/copy.inc @@ -0,0 +1,59 @@ +<?php + +/* + +-----------------------------------------------------------------------+ + | program/steps/mail/copy.inc | + | | + | This file is part of the RoundCube Webmail client | + | Copyright (C) 2005-2010, RoundCube Dev. - Switzerland | + | Licensed under the GNU GPL | + | | + | PURPOSE: | + | Copy the submitted messages to a specific mailbox | + | | + +-----------------------------------------------------------------------+ + | Author: Aleksander Machniak <alec@alec.pl> | + +-----------------------------------------------------------------------+ + + $Id$ + +*/ + +// only process ajax requests +if (!$OUTPUT->ajax_call) + return; + +// count messages before changing anything +$old_count = $IMAP->messagecount(NULL, $IMAP->threading ? 'THREADS' : 'ALL'); +$old_pages = ceil($old_count / $IMAP->page_size); + +// move messages +if (!empty($_POST['_uid']) && !empty($_POST['_target_mbox'])) { + $count = sizeof(explode(',', ($uids = get_input_value('_uid', RCUBE_INPUT_POST)))); + $target = get_input_value('_target_mbox', RCUBE_INPUT_POST); + $mbox = get_input_value('_mbox', RCUBE_INPUT_POST); + + $copied = $IMAP->copy_message($uids, $target, $mbox); + + if (!$copied) { + // send error message + if ($_POST['_from'] != 'show') + $OUTPUT->command('list_mailbox'); + $OUTPUT->show_message('errorcopying', 'error'); + $OUTPUT->send(); + exit; + } + + rcmail_send_unread_count($target, true); + + $OUTPUT->command('set_quota', rcmail_quota_content()); +} +// unknown action or missing query param +else { + exit; +} + +// send response +$OUTPUT->send(); + +?> diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index 09a24924b..e8600ef55 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -130,7 +130,8 @@ if (empty($RCMAIL->action) || $RCMAIL->action == 'list') $OUTPUT->set_env('junk_mailbox', $CONFIG['junk_mbox']); if (!$OUTPUT->ajax_call) - $OUTPUT->add_label('checkingmail', 'deletemessage', 'movemessagetotrash', 'movingmessage'); + $OUTPUT->add_label('checkingmail', 'deletemessage', 'movemessagetotrash', + 'movingmessage', 'copyingmessage', 'copy', 'move'); $OUTPUT->set_pagetitle(rcmail_localize_foldername($mbox_name)); } @@ -1457,7 +1458,6 @@ function rcmail_send_mdn($uid, &$smtp_error) return false; } - function rcmail_search_filter($attrib) { global $OUTPUT, $CONFIG; @@ -1490,6 +1490,7 @@ function rcmail_search_filter($attrib) return $out; } + // register UI objects $OUTPUT->add_handlers(array( 'mailboxlist' => 'rcmail_mailbox_list', |