summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMalf Furious <m@lfurio.us>2016-01-02 13:30:46 -0500
committerMalf Furious <m@lfurio.us>2016-01-02 13:30:46 -0500
commita21e20b7a8db343129aa8713853358bdb77de939 (patch)
treeac473b2f84cd8bb444aa5d1735602cc403557acc
parent03dd6556041ec11efe86f36d53db38c02d4362a7 (diff)
downloadscrott-a21e20b7a8db343129aa8713853358bdb77de939.tar.gz
scrott-a21e20b7a8db343129aa8713853358bdb77de939.zip
+ Added model for new page master layer ("Common" MVC)
-rw-r--r--app/model/common.mod.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/app/model/common.mod.php b/app/model/common.mod.php
new file mode 100644
index 0000000..d4270d8
--- /dev/null
+++ b/app/model/common.mod.php
@@ -0,0 +1,9 @@
+<?php
+
+require_once "model/master.mod.php";
+
+class CommonModel extends MasterModel
+{
+}
+
+?>