diff options
author | Malf Furious <m@lfurio.us> | 2016-03-05 22:40:57 -0500 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2016-03-27 20:16:32 -0400 |
commit | 3b2b46aaefc3c98969173debfb3ee8e59ab6e5fd (patch) | |
tree | c8a7011f181b9c1c43415e32f9a6479572f6c2bc /app | |
parent | ec0eee8f6c5cccfc0a29ecd8cbd08be183e1eb92 (diff) | |
download | scrott-3b2b46aaefc3c98969173debfb3ee8e59ab6e5fd.tar.gz scrott-3b2b46aaefc3c98969173debfb3ee8e59ab6e5fd.zip |
Add Dashboard model
Diffstat (limited to 'app')
-rw-r--r-- | app/model/dashboard.mod.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/app/model/dashboard.mod.php b/app/model/dashboard.mod.php new file mode 100644 index 0000000..845a56a --- /dev/null +++ b/app/model/dashboard.mod.php @@ -0,0 +1,15 @@ +<?php + +require_once "model/common.mod.php"; + +class DashboardModel extends CommonModel +{ + /* + * Default action + */ + function deflt() + { + } +} + +?> |