Clean up unused appointment functions
This commit is contained in:
parent
5fab7775d4
commit
6bc9db9117
|
@ -33,13 +33,6 @@ function reportDeletion()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function printPDF()
|
|
||||||
{
|
|
||||||
$id = $_GET["print_pdf"];
|
|
||||||
header('location: report.php');
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
if (isset($_POST["create"])) {
|
if (isset($_POST["create"])) {
|
||||||
reportCreation();
|
reportCreation();
|
||||||
}
|
}
|
||||||
|
@ -53,8 +46,3 @@ if (isset($_POST["edit"])) {
|
||||||
if (isset($_GET["delete"])) {
|
if (isset($_GET["delete"])) {
|
||||||
reportDeletion();
|
reportDeletion();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (isset($_GET["print_pdf"])) {
|
|
||||||
printPDF();
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue