From 1b24ddb6b12bd85d15beed45476d72678b758128 Mon Sep 17 00:00:00 2001 From: Malf Furious Date: Wed, 8 Jun 2016 20:21:12 -0400 Subject: Add new MVC, 'Obj' This MVC will be used to browse scrott datastructures. --- app/controller/obj.control.php | 48 +++++++++++++++++++++++++++++++++++++++++ app/controller/root.control.php | 12 +++++++++++ app/model/obj.mod.php | 23 ++++++++++++++++++++ 3 files changed, 83 insertions(+) create mode 100644 app/controller/obj.control.php create mode 100644 app/model/obj.mod.php diff --git a/app/controller/obj.control.php b/app/controller/obj.control.php new file mode 100644 index 0000000..f341b48 --- /dev/null +++ b/app/controller/obj.control.php @@ -0,0 +1,48 @@ +type) + { + case "group": + $this->action_group($mod, $argv[0]); + break; + } + } + + function action_group($mod, $guid) + { + /* TODO */ + } +} + +?> diff --git a/app/controller/root.control.php b/app/controller/root.control.php index 9a4ebd8..7e4d1ab 100644 --- a/app/controller/root.control.php +++ b/app/controller/root.control.php @@ -15,12 +15,14 @@ */ require_once "class/controller.class.php"; +require_once "class/object.class.php"; require_once "class/setting.class.php"; require_once "controller/sysconf.control.php"; require_once "controller/except.control.php"; require_once "controller/auth.control.php"; require_once "controller/deauth.control.php"; require_once "controller/dashboard.control.php"; +require_once "controller/obj.control.php"; require_once "controller/deleteacct.control.php"; /* @@ -82,6 +84,16 @@ class Root extends Controller case "logout": $ctrl = new Deauth(); break; case "deleteaccount": $ctrl = new Deleteacct(); break; default: + /* Check if arg is an object guid */ + $obj = new DBObject(); + + if ($obj->isGUID($argv[0])) + { + $ctrl = new Obj(); + break; + } + + /* No page to show for requested path */ throw new Exception("The requested path is not valid."); break; } diff --git a/app/model/obj.mod.php b/app/model/obj.mod.php new file mode 100644 index 0000000..bccef93 --- /dev/null +++ b/app/model/obj.mod.php @@ -0,0 +1,23 @@ + -- cgit v1.2.3