Portions created by the Initial Developer are Copyright (C) 2015 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('fax_file_delete')) { //access granted } else { echo "access denied"; exit; } //add multi-lingual support require_once "app_languages.php"; foreach($text as $key => $value) { $text[$key] = $value[$_SESSION['domain']['language']['code']]; } //get the id if (isset($_REQUEST["id"])) { $fax_file_uuid = check_str($_REQUEST["id"]); } //validate the id if (strlen($fax_file_uuid) > 0) { //get the fax file data $sql = "select * from v_fax_files "; $sql .= "where fax_file_uuid = '".$fax_file_uuid."' "; $sql .= "and domain_uuid = '".$_SESSION['domain_uuid']."' "; $prep_statement = $db->prepare(check_sql($sql)); $prep_statement->execute(); $result = $prep_statement->fetchAll(PDO::FETCH_NAMED); foreach ($result as &$row) { $fax_uuid = $row["fax_uuid"]; $fax_mode = $row["fax_mode"]; $fax_file_path = $row["fax_file_path"]; $fax_file_type = $row["fax_file_type"]; } unset($prep_statement); //set the type if ($fax_mode == 'rx') { $type = 'inbox'; } if ($fax_mode == 'tx') { $type = 'sent'; } //delete fax file(s) if (substr_count($fax_file_path, '/temp/') > 0) { $fax_file_path = str_replace('/temp/', '/'.$type.'/', $fax_file_path); } if (file_exists($fax_file_path)) { @unlink($fax_file_path); } if ($fax_file_type == 'tif') { $fax_file_path = str_replace('.tif', '.pdf', $fax_file_path); if (file_exists($fax_file_path)) { @unlink($fax_file_path); } } else if ($fax_file_type == 'pdf') { $fax_file_path = str_replace('.pdf', '.tif', $fax_file_path); if (file_exists($fax_file_path)) { @unlink($fax_file_path); } } //delete fax file record $sql = "delete from v_fax_files "; $sql .= "where fax_file_uuid = '".$fax_file_uuid."' "; $sql .= "and domain_uuid = '".$_SESSION['domain_uuid']."' "; $prep_statement = $db->prepare(check_sql($sql)); $prep_statement->execute(); unset($prep_statement); messages::add($text['message-delete']); } //redirect the user header('Location: fax_files.php?id='.$fax_uuid.'&box='.$type); ?>