diff options
author | till <till@php.net> | 2010-03-20 14:20:01 +0000 |
---|---|---|
committer | till <till@php.net> | 2010-03-20 14:20:01 +0000 |
commit | 63a3dc5fde5a3ceed4f03c19c5015aab19050bee (patch) | |
tree | 50aafccdad5fe36c59f10d194298c35f046afd2f /plugins/archive/archive.js | |
parent | 0f8ff20ae2e8c949d58b9ca02bda95e388f7d142 (diff) |
moved plugins
Diffstat (limited to 'plugins/archive/archive.js')
-rw-r--r-- | plugins/archive/archive.js | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/plugins/archive/archive.js b/plugins/archive/archive.js deleted file mode 100644 index 954fd1549..000000000 --- a/plugins/archive/archive.js +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Archive plugin script - * @version 1.2 - */ - -function rcmail_archive(prop) -{ - if (!rcmail.env.uid && (!rcmail.message_list || !rcmail.message_list.get_selection().length)) - return; - - var uids = rcmail.env.uid ? rcmail.env.uid : rcmail.message_list.get_selection().join(','); - - rcmail.set_busy(true, 'loading'); - rcmail.http_post('plugin.archive', '_uid='+uids+'&_mbox='+urlencode(rcmail.env.mailbox), true); -} - -// callback for app-onload event -if (window.rcmail) { - rcmail.addEventListener('init', function(evt) { - - // register command (directly enable in message view mode) - rcmail.register_command('plugin.archive', rcmail_archive, (rcmail.env.uid && rcmail.env.mailbox != rcmail.env.archive_folder)); - - // add event-listener to message list - if (rcmail.message_list) - rcmail.message_list.addEventListener('select', function(list){ - rcmail.enable_command('plugin.archive', (list.get_selection().length > 0 && rcmail.env.mailbox != rcmail.env.archive_folder)); - }); - - // set css style for archive folder - var li; - if (rcmail.env.archive_folder && rcmail.env.archive_folder_icon && (li = rcmail.get_folder_li(rcmail.env.archive_folder))) - $(li).css('background-image', 'url(' + rcmail.env.archive_folder_icon + ')'); - }) -} - |