Portions created by the Initial Developer are Copyright (C) 2013 - 2019 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('ring_group_delete')) { //access granted } else { echo "access denied"; exit; } //add multi-lingual support $language = new text; $text = $language->get(); //get the id if (is_array($_GET)) { $id = $_GET["id"]; $ring_group_uuid = $_GET["ring_group_uuid"]; } //delete ring_group_destination if (is_uuid($id)) { $array['ring_group_destinations'][]['ring_group_destination_uuid'] = $id; $database = new database; $database->app_name = 'ring_groups'; $database->app_uuid = '1d61fb65-1eec-bc73-a6ee-a6203b4fe6f2'; $database->delete($array); //$message = $database->message; } //save the message to a session variable message::add($text['message-delete']); //redirect the browser if (is_uuid($ring_group_uuid)) { header("Location: ring_group_edit.php?id=".$ring_group_uuid); } ?>