Files
roundcubemail/program/actions/settings/folder_reorder.php
Pablo Zmdl 3b727c3db1 Allow to manually reorder "normal" folders
Special folders like INBOX, Sent, etc. are staying at the top of the
list.
2025-07-11 11:58:48 +02:00

23 lines
632 B
PHP

<?php
class rcmail_action_settings_folder_reorder extends rcmail_action_settings_folders
{
protected static $mode = self::MODE_AJAX;
/**
* Request handler.
*
* @param array $args Arguments from the previous step(s)
*/
#[Override]
public function run($args = [])
{
$rcmail = rcmail::get_instance();
$list = array_flip(rcube_utils::get_input_value('folderorder', rcube_utils::INPUT_POST, true));
$rcmail->user->save_prefs(['folder_order' => $list]);
$rcmail->output->show_message('successfullysaved', 'confirmation');
$rcmail->output->send();
}
}