diff --git a/app/call_block/call_block_delete.php b/app/call_block/call_block_delete.php deleted file mode 100644 index d16329186f..0000000000 --- a/app/call_block/call_block_delete.php +++ /dev/null @@ -1,87 +0,0 @@ - - Portions created by the Initial Developer are Copyright (C) 2008-2012 - the Initial Developer. All Rights Reserved. - - Contributor(s): - Mark J Crane - - Call Block is written by Gerrit Visser -*/ -//includes - include "root.php"; - require_once "resources/require.php"; - require_once "resources/check_auth.php"; - -//check permissions - if (!permission_exists('call_block_delete')) { - echo "access denied"; exit; - } - -//add multi-lingual support - $language = new text; - $text = $language->get(); - -//delete the extension - if (is_uuid($_GET["id"])) { - $call_block_uuid = $_GET["id"]; - - //read the call_block_number - $sql = "select c.call_block_number, d.domain_name "; - $sql .= "from v_call_block as c "; - $sql .= "join v_domains as d on c.domain_uuid = d.domain_uuid "; - $sql .= "where c.domain_uuid = :domain_uuid "; - $sql .= "and c.call_block_uuid = :call_block_uuid "; - $parameters['domain_uuid'] = $_SESSION['domain_uuid']; - $parameters['call_block_uuid'] = $call_block_uuid; - $database = new database; - $result = $database->select($sql, $parameters, 'row'); - - if (is_array($result) && sizeof($result) != 0) { - $call_block_number = $result["call_block_number"]; - $domain_name = $result["domain_name"]; - - //clear the cache - $cache = new cache; - $cache->delete("app:call_block:".$domain_name.":".$call_block_number); - } - - unset($sql, $parameters, $result); - - //delete the call block - $array['call_block'][0]['call_block_uuid'] = $call_block_uuid; - $array['call_block'][0]['domain_uuid'] = $_SESSION['domain_uuid']; - - $database = new database; - $database->app_name = 'call_block'; - $database->app_uuid = '9ed63276-e085-4897-839c-4f2e36d92d6c'; - $database->delete($array); - $response = $database->message; - unset($array); - - //message - message::add($text['label-delete-complete']); - } - - //redirect the browser - header("Location: call_block.php"); - return; - -?>