| | |
| | | // always instantiate storage object (but not connect to server yet) |
| | | $RCMAIL->storage_init(); |
| | | |
| | | // set imap properties and session vars |
| | | if (!strlen($mbox = rcube_utils::get_input_value('_mbox', rcube_utils::INPUT_GPC, true))) { |
| | | $mbox = strlen($_SESSION['mbox']) ? $_SESSION['mbox'] : 'INBOX'; |
| | | } |
| | | if (!($page = intval($_GET['_page']))) { |
| | | $page = $_SESSION['page'] ? $_SESSION['page'] : 1; |
| | | } |
| | | |
| | | $RCMAIL->storage->set_folder($_SESSION['mbox'] = $mbox); |
| | | $RCMAIL->storage->set_page($_SESSION['page'] = $page); |
| | | |
| | | $a_threading = $RCMAIL->config->get('message_threading', array()); |
| | | $message_sort_col = $RCMAIL->config->get('message_sort_col'); |
| | | $message_sort_order = $RCMAIL->config->get('message_sort_order'); |
| | | |
| | | // set default sort col/order to session |
| | | if (!isset($_SESSION['sort_col'])) { |
| | | $_SESSION['sort_col'] = $message_sort_col ? $message_sort_col : ''; |
| | | } |
| | | if (!isset($_SESSION['sort_order'])) { |
| | | $_SESSION['sort_order'] = strtoupper($message_sort_order) == 'ASC' ? 'ASC' : 'DESC'; |
| | | } |
| | | |
| | | // set threads mode |
| | | if (isset($_GET['_threads'])) { |
| | | if ($_GET['_threads']) |
| | | $a_threading[$_SESSION['mbox']] = true; |
| | | else |
| | | unset($a_threading[$_SESSION['mbox']]); |
| | | |
| | | $RCMAIL->user->save_prefs(array('message_threading' => $a_threading)); |
| | | } |
| | | $RCMAIL->storage->set_threading($a_threading[$_SESSION['mbox']]); |
| | | // init environment - set current folder, page, list mode |
| | | rcmail_init_env(); |
| | | |
| | | // set message set for search result |
| | | if (!empty($_REQUEST['_search']) && isset($_SESSION['search']) |
| | |
| | | if (!$OUTPUT->ajax_call) { |
| | | $OUTPUT->add_label('checkingmail', 'deletemessage', 'movemessagetotrash', |
| | | 'movingmessage', 'copyingmessage', 'deletingmessage', 'markingmessage', |
| | | 'copy', 'move', 'quota', 'replyall', 'replylist', 'stillsearching'); |
| | | 'copy', 'move', 'quota', 'replyall', 'replylist', 'stillsearching', |
| | | 'flagged', 'unflagged', 'unread', 'deleted', 'replied', 'forwarded', |
| | | 'priority', 'withattachment'); |
| | | } |
| | | |
| | | $pagetitle = $RCMAIL->localize_foldername($mbox_name, true); |
| | |
| | | 'group-expand' => 'autocomplete.inc', |
| | | )); |
| | | |
| | | |
| | | /** |
| | | * Sets storage properties and session |
| | | */ |
| | | function rcmail_init_env() |
| | | { |
| | | global $RCMAIL; |
| | | |
| | | $a_threading = $RCMAIL->config->get('message_threading', array()); |
| | | $message_sort_col = $RCMAIL->config->get('message_sort_col'); |
| | | $message_sort_order = $RCMAIL->config->get('message_sort_order'); |
| | | |
| | | // set imap properties and session vars |
| | | if (!strlen($mbox = rcube_utils::get_input_value('_mbox', rcube_utils::INPUT_GPC, true))) { |
| | | $mbox = strlen($_SESSION['mbox']) ? $_SESSION['mbox'] : 'INBOX'; |
| | | } |
| | | if (!($page = intval($_GET['_page']))) { |
| | | $page = $_SESSION['page'] ? $_SESSION['page'] : 1; |
| | | } |
| | | |
| | | $RCMAIL->storage->set_folder($_SESSION['mbox'] = $mbox); |
| | | $RCMAIL->storage->set_page($_SESSION['page'] = $page); |
| | | |
| | | // set default sort col/order to session |
| | | if (!isset($_SESSION['sort_col'])) { |
| | | $_SESSION['sort_col'] = $message_sort_col ? $message_sort_col : ''; |
| | | } |
| | | if (!isset($_SESSION['sort_order'])) { |
| | | $_SESSION['sort_order'] = strtoupper($message_sort_order) == 'ASC' ? 'ASC' : 'DESC'; |
| | | } |
| | | |
| | | // set threads mode |
| | | if (isset($_GET['_threads'])) { |
| | | if ($_GET['_threads']) { |
| | | // re-set current page number when listing mode changes |
| | | if (!$a_threading[$_SESSION['mbox']]) { |
| | | $RCMAIL->storage->set_page($_SESSION['page'] = 1); |
| | | } |
| | | |
| | | $a_threading[$_SESSION['mbox']] = true; |
| | | } |
| | | else { |
| | | // re-set current page number when listing mode changes |
| | | if ($a_threading[$_SESSION['mbox']]) { |
| | | $RCMAIL->storage->set_page($_SESSION['page'] = 1); |
| | | } |
| | | |
| | | unset($a_threading[$_SESSION['mbox']]); |
| | | } |
| | | |
| | | $RCMAIL->user->save_prefs(array('message_threading' => $a_threading)); |
| | | } |
| | | |
| | | $RCMAIL->storage->set_threading($a_threading[$_SESSION['mbox']]); |
| | | } |
| | | |
| | | /** |
| | | * Returns default search mods |
| | |
| | | $a_sort_cols = array('subject', 'date', 'from', 'to', 'fromto', 'size', 'cc'); |
| | | |
| | | if (!empty($attrib['optionsmenuicon'])) { |
| | | $onclick = 'return ' . rcmail_output::JS_OBJECT_NAME . ".command('menu-open', 'messagelistmenu')"; |
| | | if ($attrib['optionsmenuicon'] === true || $attrib['optionsmenuicon'] == 'true') |
| | | $list_menu = html::div(array('onclick' => $onclick, 'class' => 'listmenu', |
| | | 'id' => 'listmenulink', 'title' => $RCMAIL->gettext('listoptions'))); |
| | | else |
| | | $list_menu = html::a(array('href' => '#', 'onclick' => $onclick), |
| | | html::img(array('src' => $skin_path . $attrib['optionsmenuicon'], |
| | | 'id' => 'listmenulink', 'title' => $RCMAIL->gettext('listoptions')))); |
| | | $onclick = 'return ' . rcmail_output::JS_OBJECT_NAME . ".command('menu-open', 'messagelistmenu', this, event)"; |
| | | $inner = $RCMAIL->gettext('listoptions'); |
| | | if (is_string($attrib['optionsmenuicon']) && $attrib['optionsmenuicon'] != 'true') { |
| | | $inner = html::img(array('src' => $skin_path . $attrib['optionsmenuicon'], 'alt' => $RCMAIL->gettext('listoptions'))); |
| | | } |
| | | $list_menu = html::a(array( |
| | | 'href' => '#list-options', |
| | | 'onclick' => $onclick, |
| | | 'class' => 'listmenu', |
| | | 'id' => 'listmenulink', |
| | | 'title' => $RCMAIL->gettext('listoptions'), |
| | | 'tabindex' => '0', |
| | | ), $inner); |
| | | } |
| | | else { |
| | | $list_menu = ''; |
| | |
| | | // get column name |
| | | switch ($col) { |
| | | case 'flag': |
| | | $col_name = html::span('flagged', ' '); |
| | | $col_name = html::span('flagged', $RCMAIL->gettext('flagged')); |
| | | break; |
| | | case 'attachment': |
| | | case 'priority': |
| | | $col_name = html::span($col, $RCMAIL->gettext($col)); |
| | | break; |
| | | case 'status': |
| | | $col_name = html::span($col, ' '); |
| | | $col_name = html::span($col, $RCMAIL->gettext('readstatus')); |
| | | break; |
| | | case 'threads': |
| | | $col_name = $list_menu; |
| | |
| | | $plugin = $RCMAIL->plugins->exec_hook('message_headers_output', array( |
| | | 'output' => $output_headers, |
| | | 'headers' => $headers_obj, |
| | | 'exclude' => $exclude_headers |
| | | 'exclude' => $exclude_headers, // readonly |
| | | 'folder' => $MESSAGE->folder, // readonly |
| | | 'uid' => $MESSAGE->uid, // readonly |
| | | )); |
| | | |
| | | // single header value is requested |