diff options
author | Malf Furious <m@lfurio.us> | 2016-01-02 13:30:46 -0500 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2016-01-02 13:30:46 -0500 |
commit | a21e20b7a8db343129aa8713853358bdb77de939 (patch) | |
tree | ac473b2f84cd8bb444aa5d1735602cc403557acc /app/model/common.mod.php | |
parent | 03dd6556041ec11efe86f36d53db38c02d4362a7 (diff) | |
download | scrott-a21e20b7a8db343129aa8713853358bdb77de939.tar.gz scrott-a21e20b7a8db343129aa8713853358bdb77de939.zip |
+ Added model for new page master layer ("Common" MVC)
Diffstat (limited to '')
-rw-r--r-- | app/model/common.mod.php | 9 |
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 +{ +} + +?> |