X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Ffolders_delete.php;h=a301f70ba9578161d9be6aceda4033bc61493635;hb=45c4e0f2653ed11aa2d417923e043440e1d33d77;hp=0561c920f8a281a884c89a3bf98c86da4c8da565;hpb=907165cad70ac37852b5bfbb095c309571a5c035;p=squirrelmail.git diff --git a/src/folders_delete.php b/src/folders_delete.php index 0561c920..a301f70b 100644 --- a/src/folders_delete.php +++ b/src/folders_delete.php @@ -1,49 +1,102 @@ - 0) - $success = copyMessages($imapConnection, 1, $numMessages, "$trash_folder.$folder"); - else - $success = true; - - if ($success == true) - removeFolder($imapConnection, "$boxesUnformatted[$i]"); - } + } + + /** First create the top node in the tree **/ + for ($i = 0;$i < count($boxes);$i++) { + if (($boxes[$i]["unformatted-dm"] == $mailbox) && (strlen($boxes[$i]["unformatted-dm"]) == strlen($mailbox))) { + $foldersTree[0]["value"] = $mailbox; + $foldersTree[0]["doIHaveChildren"] = false; + continue; } - } else { /** if they do NOT wish to move messages to the trash **/ - for ($i = 0; $i < count($boxesUnformatted); $i++) { - if (substr($boxesUnformatted[$i], 0, strlen($mailbox)) == $mailbox) { - removeFolder($imapConnection, "$boxesUnformatted[$i]"); - } + } + // Now create the nodes for subfolders of the parent folder + // You can tell that it is a subfolder by tacking the mailbox delimiter + // on the end of the $mailbox string, and compare to that. + $j = 0; + for ($i = 0;$i < count($boxes);$i++) { + if (substr($boxes[$i]["unformatted"], 0, strlen($mailbox_no_dm . $dm)) == ($mailbox_no_dm . $dm)) { + addChildNodeToTree($boxes[$i]["unformatted"], $boxes[$i]["unformatted-dm"], $foldersTree); } } +// simpleWalkTreePre(0, $foldersTree); - /** Log out this session **/ - fputs($imapConnection, "1 logout"); - - echo "

Return"; -?> + /** Lets start removing the folders and messages **/ + if (($move_to_trash == true) && ($can_move_to_trash == true)) { /** if they wish to move messages to the trash **/ + walkTreeInPostOrderCreatingFoldersUnderTrash(0, $imap_stream, $foldersTree, $dm, $mailbox); + walkTreeInPreOrderDeleteFolders(0, $imap_stream, $foldersTree); + } else { /** if they do NOT wish to move messages to the trash (or cannot)**/ + walkTreeInPreOrderDeleteFolders(0, $imap_stream, $foldersTree); + } + /** Log out this session **/ + sqimap_logout($imap_stream); + $location = get_location(); + header ("Location: $location/folders.php?success=delete"); + /* + echo "


"; + echo _("Folder Deleted!"); + echo "

"; + echo _("The folder has been successfully deleted."); + echo "
"; + echo _("Click here"); + echo " "; + echo _("to continue."); + echo "
"; + + echo ""; + */ +?> \ No newline at end of file