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.php28
1 files changed, 28 insertions, 0 deletions
diff --git a/app/controller/deleteacct.control.php b/app/controller/deleteacct.control.php
new file mode 100644
index 0000000..176b7bf
--- /dev/null
+++ b/app/controller/deleteacct.control.php
@@ -0,0 +1,28 @@
+<?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();
+ $this->action_default($mod);
+ }
+
+ function action_default($mod)
+ {
+ $mod->deflt();
+ include "view/deleteacct/default.view.php";
+ }
+}
+
+?>