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); ?>