summaryrefslogtreecommitdiffstats
path: root/app/controller/deleteacct.control.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/controller/deleteacct.control.php')
-rw-r--r--app/controller/deleteacct.control.php44
1 files changed, 44 insertions, 0 deletions
diff --git a/app/controller/deleteacct.control.php b/app/controller/deleteacct.control.php
new file mode 100644
index 0000000..bd81ec7
--- /dev/null
+++ b/app/controller/deleteacct.control.php
@@ -0,0 +1,44 @@
+<?php
+
+require_once "class/controller.class.php";
+require_once "model/deleteacct.mod.php";
+
+/*
+ * Deleteacct is used to delete user accounts, requiring all requests to
+ * correctly enter the user's password
+ */
+class Deleteacct extends Controller
+{
+ /*
+ * Controller implementation
+ */
+ function handle($argv)
+ {
+ $mod = new DeleteacctModel();
+
+ switch ($_REQUEST['input']['action'])
+ {
+ case "delete":
+ $this->action_delete($mod);
+ break;
+
+ default:
+ $this->action_default($mod);
+ break;
+ }
+ }
+
+ function action_default($mod)
+ {
+ $mod->deflt();
+ include "view/deleteacct/default.view.php";
+ }
+
+ function action_delete($mod)
+ {
+ $mod->del($_REQUEST['input']);
+ $this->action_default($mod);
+ }
+}
+
+?>