- Add possibility to return subscription status and css class name for folder row from "folder_save" hook

- Fix folder preview frame state after folder creation
release-0.6
alecpl 13 years ago
parent 5f2d1588dd
commit 1a034323fc

@ -4461,7 +4461,7 @@ function rcube_webmail()
}; };
// Add folder row to the table and initialize it // Add folder row to the table and initialize it
this.add_folder_row = function (name, display_name, protected, subscribed, skip_init) this.add_folder_row = function (name, display_name, protected, subscribed, skip_init, class_name)
{ {
if (!this.gui_objects.subscriptionlist) if (!this.gui_objects.subscriptionlist)
return false; return false;
@ -4478,8 +4478,11 @@ function rcube_webmail()
} }
// clone a table row if there are existing rows // clone a table row if there are existing rows
row = $(refrow).clone(true); row = $(refrow).clone(true);
// set ID, reset css class
row.attr('id', id); row.attr('id', id);
row.attr('class', class_name);
// set folder name // set folder name
row.find('td:first').html(display_name); row.find('td:first').html(display_name);
@ -4537,7 +4540,7 @@ function rcube_webmail()
}; };
// replace an existing table row with a new folder line (with subfolders) // replace an existing table row with a new folder line (with subfolders)
this.replace_folder_row = function(oldfolder, newfolder, display_name, protected) this.replace_folder_row = function(oldfolder, newfolder, display_name, protected, class_name)
{ {
if (!this.gui_objects.subscriptionlist) if (!this.gui_objects.subscriptionlist)
return false; return false;
@ -4553,7 +4556,7 @@ function rcube_webmail()
// replace an existing table row // replace an existing table row
this._remove_folder_row(id); this._remove_folder_row(id);
row = $(this.add_folder_row(newfolder, display_name, protected, subscribed, true)); row = $(this.add_folder_row(newfolder, display_name, protected, subscribed, true, class_name));
// detect tree depth change // detect tree depth change
if (len = list.length) { if (len = list.length) {

@ -819,11 +819,18 @@ function rcmail_folder_options($mailbox)
} }
} }
return $options; return $options;
} }
// Updates (or creates) folder row in the subscriptions table /**
function rcmail_update_folder_row($name, $oldname=null) * Updates (or creates) folder row in the subscriptions table
*
* @param string $name Folder name
* @param string $oldname Old folder name (for update)
* @param bool $subscribe Checks subscription checkbox
* @param string $class CSS class name for folder row
*/
function rcmail_update_folder_row($name, $oldname=null, $subscribe=false, $class_name=null)
{ {
global $IMAP, $CONFIG, $OUTPUT; global $IMAP, $CONFIG, $OUTPUT;
@ -837,10 +844,11 @@ function rcmail_update_folder_row($name, $oldname=null)
. Q($protected ? rcmail_localize_foldername($name) : rcube_charset_convert($foldersplit[$level], 'UTF7-IMAP')); . Q($protected ? rcmail_localize_foldername($name) : rcube_charset_convert($foldersplit[$level], 'UTF7-IMAP'));
if ($oldname === null) if ($oldname === null)
$OUTPUT->command('add_folder_row', $name_utf8, $display_name, $protected, true); $OUTPUT->command('add_folder_row', $name_utf8, $display_name, $protected, $subscribe,
false, $class_name);
else else
$OUTPUT->command('replace_folder_row', rcube_charset_convert($oldname, 'UTF7-IMAP'), $OUTPUT->command('replace_folder_row', rcube_charset_convert($oldname, 'UTF7-IMAP'),
$name_utf8, $display_name, $protected); $name_utf8, $display_name, $protected, $class_name);
} }

@ -71,6 +71,7 @@ else {
$folder['name'] = $name_imap; $folder['name'] = $name_imap;
$folder['oldname'] = $old_imap; $folder['oldname'] = $old_imap;
$folder['class'] = '';
$folder['settings'] = array( $folder['settings'] = array(
// List view mode: 0-list, 1-threads // List view mode: 0-list, 1-threads
'view_mode' => (int) get_input_value('_viewmode', RCUBE_INPUT_POST), 'view_mode' => (int) get_input_value('_viewmode', RCUBE_INPUT_POST),
@ -82,12 +83,14 @@ else {
// create a new mailbox // create a new mailbox
if (!$error && !strlen($old)) { if (!$error && !strlen($old)) {
$folder['subscribe'] = true;
$plugin = $RCMAIL->plugins->exec_hook('folder_create', array('record' => $folder)); $plugin = $RCMAIL->plugins->exec_hook('folder_create', array('record' => $folder));
$folder = $plugin['record']; $folder = $plugin['record'];
if (!$plugin['abort']) { if (!$plugin['abort']) {
$created = $IMAP->create_mailbox($folder['name'], TRUE); $created = $IMAP->create_mailbox($folder['name'], $folder['subscribe']);
} }
else { else {
$created = $plugin['result']; $created = $plugin['result'];
@ -105,9 +108,11 @@ if (!$error && !strlen($old)) {
$RCMAIL->user->save_prefs(array('message_threading' => $a_threaded)); $RCMAIL->user->save_prefs(array('message_threading' => $a_threaded));
} }
rcmail_update_folder_row($folder['name']); rcmail_update_folder_row($folder['name'], null, $folder['subscribe'], $folder['class']);
$OUTPUT->show_message('foldercreated', 'confirmation'); $OUTPUT->show_message('foldercreated', 'confirmation');
// reset folder preview frame
$OUTPUT->command('subscription_select');
$OUTPUT->send('iframe'); $OUTPUT->send('iframe');
} }
else { else {
@ -163,7 +168,7 @@ else if (!$error) {
$OUTPUT->show_message('folderupdated', 'confirmation'); $OUTPUT->show_message('folderupdated', 'confirmation');
if ($rename) { if ($rename) {
rcmail_update_folder_row($folder['name'], $folder['oldname']); rcmail_update_folder_row($folder['name'], $folder['oldname'], $folder['subscribe'], $folder['class']);
$OUTPUT->send('iframe'); $OUTPUT->send('iframe');
} }
} }

Loading…
Cancel
Save