diff --git a/app/voicemails/voicemail_delete.php b/app/voicemails/voicemail_delete.php deleted file mode 100644 index 3478ba9517..0000000000 --- a/app/voicemails/voicemail_delete.php +++ /dev/null @@ -1,67 +0,0 @@ - - Portions created by the Initial Developer are Copyright (C) 2008-2016 - the Initial Developer. All Rights Reserved. - - Contributor(s): - Mark J Crane -*/ - -//includes - require_once "root.php"; - require_once "resources/require.php"; - require_once "resources/check_auth.php"; - -//check permissions - if (permission_exists('voicemail_delete')) { - //access granted - } - else { - echo "access denied"; - exit; - } - -//add multi-lingual support - $language = new text; - $text = $language->get(); - -//get the ids - if (is_array($_REQUEST) && @sizeof($_REQUEST) > 0) { - $voicemail_uuids = $_REQUEST["id"]; - foreach($voicemail_uuids as $voicemail_uuid) { - if (is_uuid($voicemail_uuid)) { - //delete voicemail messages - require_once "resources/classes/voicemail.php"; - $voicemail = new voicemail; - $voicemail->db = $db; - $voicemail->domain_uuid = $_SESSION['domain_uuid']; - $voicemail->voicemail_uuid = $voicemail_uuid; - $result = $voicemail->voicemail_delete(); - unset($voicemail); - } - } - } - -//redirect the user - message::add($text['message-delete']); - header("Location: voicemails.php"); - return; - -?> \ No newline at end of file diff --git a/app/voicemails/voicemail_message_delete.php b/app/voicemails/voicemail_message_delete.php deleted file mode 100644 index f938597a1d..0000000000 --- a/app/voicemails/voicemail_message_delete.php +++ /dev/null @@ -1,82 +0,0 @@ - - Portions created by the Initial Developer are Copyright (C) 2008-2012 - the Initial Developer. All Rights Reserved. - - Contributor(s): - Mark J Crane -*/ -require_once "root.php"; -require_once "resources/require.php"; -require_once "resources/check_auth.php"; -if (permission_exists('voicemail_message_delete')) { - //access granted -} -else { - echo "access denied"; - exit; -} - -//add multi-lingual support - $language = new text; - $text = $language->get(); - -//get submitted variables - $voicemail_messages = $_REQUEST["voicemail_messages"]; - -//delete the voicemail message - $deleted = 0; - if (is_array($voicemail_messages) && @sizeof($voicemail_messages) > 0) { - require_once "resources/classes/voicemail.php"; - foreach ($voicemail_messages as $voicemail_uuid => $voicemail_message_uuids) { - if (is_array($voicemail_message_uuids) && @sizeof($voicemail_message_uuids) != 0) { - foreach ($voicemail_message_uuids as $voicemail_message_uuid) { - if (is_uuid($voicemail_uuid) && is_uuid($voicemail_message_uuid)) { - $voicemail = new voicemail; - $voicemail->db = $db; - $voicemail->domain_uuid = $_SESSION['domain_uuid']; - $voicemail->voicemail_uuid = $voicemail_uuid; - $voicemail->voicemail_message_uuid = $voicemail_message_uuid; - $result = $voicemail->message_delete(); - unset($voicemail); - $deleted++; - } - } - } - } - } - -//set the referrer - $http_referer = parse_url($_SERVER["HTTP_REFERER"]); - $referer_path = $http_referer['path']; - $referer_query = $http_referer['query']; - -//redirect the user - if ($deleted > 0) { - message::add($text['message-delete'].': '.$deleted); - } - if ($referer_path == PROJECT_PATH."/app/voicemails/voicemail_messages.php") { - header("Location: voicemail_messages.php?".$referer_query); - } - else { - header("Location: voicemails.php"); - } - -?> \ No newline at end of file