| | |
| | | |
| | | if (!empty($_SESSION['search_scope'])) |
| | | $OUTPUT->set_env('search_scope', $_SESSION['search_scope']); |
| | | |
| | | rcmail_list_pagetitle(); |
| | | } |
| | | |
| | | $threading = (bool) $RCMAIL->storage->get_threading(); |
| | |
| | | 'flagged', 'unflagged', 'unread', 'deleted', 'replied', 'forwarded', |
| | | 'priority', 'withattachment', 'fileuploaderror'); |
| | | } |
| | | |
| | | $pagetitle = $RCMAIL->localize_foldername($mbox_name, true); |
| | | $pagetitle = str_replace($delimiter, " \xC2\xBB ", $pagetitle); |
| | | |
| | | $OUTPUT->set_pagetitle($pagetitle); |
| | | } |
| | | |
| | | // register UI objects |
| | |
| | | } |
| | | |
| | | /** |
| | | * Sets page title |
| | | */ |
| | | function rcmail_list_pagetitle() |
| | | { |
| | | global $RCMAIL; |
| | | |
| | | if ($RCMAIL->output->get_env('search_request')) { |
| | | $pagetitle = $RCMAIL->gettext('searchresult'); |
| | | } |
| | | else { |
| | | $mbox_name = $RCMAIL->storage->get_folder(); |
| | | $delimiter = $RCMAIL->storage->get_hierarchy_delimiter(); |
| | | $pagetitle = $RCMAIL->localize_foldername($mbox_name, true); |
| | | $pagetitle = str_replace($delimiter, " \xC2\xBB ", $pagetitle); |
| | | } |
| | | |
| | | $RCMAIL->output->set_pagetitle($pagetitle); |
| | | } |
| | | |
| | | /** |
| | | * Returns default search mods |
| | | */ |
| | | function rcmail_search_mods() |