summaryrefslogtreecommitdiffstats
path: root/app/model/master.mod.php
diff options
context:
space:
mode:
authorM <m@lfurio.us>2015-11-22 12:40:37 -0500
committerM <m@lfurio.us>2015-11-22 12:40:37 -0500
commitb1f4cf9b23acbcb80f937ef7f0b9f18fdb167f5a (patch)
treedbfb151948cf2603a4f74f93870b508a6c94d6ea /app/model/master.mod.php
parent2710f0de8d8d900a0997fd72f315c8a6f07329cf (diff)
downloadscrott-b1f4cf9b23acbcb80f937ef7f0b9f18fdb167f5a.tar.gz
scrott-b1f4cf9b23acbcb80f937ef7f0b9f18fdb167f5a.zip
+ Start of Master MVC ( will define generic layout of pages but will not define logic for header ui. since this depends on an established database ).
+ Added Master model ! As far as I am planning right now, the only MVC that will inherit Master directly will be sysconf since it cannot rely on an existing database connection.
Diffstat (limited to 'app/model/master.mod.php')
-rw-r--r--app/model/master.mod.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/app/model/master.mod.php b/app/model/master.mod.php
new file mode 100644
index 0000000..2570a8b
--- /dev/null
+++ b/app/model/master.mod.php
@@ -0,0 +1,9 @@
+<?php
+
+require_once "class/model.class.php";
+
+class MasterModel extends Model
+{
+}
+
+?>