From d754f8d09897640a64774b44e2c3e754874b25ce Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Tue, 24 Jan 2017 22:42:23 -0700 Subject: [PATCH] Create sip_profile_domain_delete.php --- .../sip_profile_domain_delete.php | 76 +++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 app/sip_profiles/sip_profile_domain_delete.php diff --git a/app/sip_profiles/sip_profile_domain_delete.php b/app/sip_profiles/sip_profile_domain_delete.php new file mode 100644 index 0000000000..0fa89dc016 --- /dev/null +++ b/app/sip_profiles/sip_profile_domain_delete.php @@ -0,0 +1,76 @@ + + Portions created by the Initial Developer are Copyright (C) 2016 + the Initial Developer. All Rights Reserved. + + Contributor(s): + Mark J Crane +*/ + +//includes + require_once "root.php"; + require_once "resources/require.php"; + +//check permissions + require_once "resources/check_auth.php"; + if (permission_exists('sip_profile_domain_delete')) { + //access granted + } + else { + echo "access denied"; + exit; + } + +//add multi-lingual support + $language = new text; + $text = $language->get(); + +//delete the data + if (is_uuid($_GET["id"])) { + + //get the id + $id = $_GET["id"]; + + //get the details of the sip profile + $sql = "select * from v_sip_profile_domains "; + $sql .= "where sip_profile_domain_uuid = '$id' "; + $prep_statement = $db->prepare(check_sql($sql)); + $prep_statement->execute(); + $result = $prep_statement->fetchAll(); + if (is_array($result)) { + foreach ($result as &$row) { + $sip_profile_uuid = $row["sip_profile_uuid"]; + } + } + unset ($prep_statement); + + //delete sip_profile_domain + $sql = "delete from v_sip_profile_domains "; + $sql .= "where sip_profile_domain_uuid = '$id' "; + $prep_statement = $db->prepare(check_sql($sql)); + $prep_statement->execute(); + unset($sql); + } + +//redirect the user + $_SESSION['message'] = $text['message-delete']; + header('Location: sip_profile_edit.php?id='.$sip_profile_uuid); + +?>