X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Ffolders_delete.php;h=7cda7013ae9fd11ed9989aa0421b6d8821af99ce;hb=e235ccb25b93f180692370bfa451d0c94075d5be;hp=acddaf55ecedb81593984e28237f51ec23b7bda7;hpb=54e3c1d8bb43166fe4093ee9a55e346c88655a59;p=squirrelmail.git diff --git a/src/folders_delete.php b/src/folders_delete.php index acddaf55..7cda7013 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); + + /** 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 **/ - fputs($imapConnection, "1 logout"); + sqimap_logout($imap_stream); - echo "

Return"; + $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 ""; + */ ?> - -