summaryrefslogtreecommitdiffstats
path: root/app/model/dashboard.mod.php
diff options
context:
space:
mode:
authorMalf Furious <m@lfurio.us>2016-03-05 22:40:57 -0500
committerMalf Furious <m@lfurio.us>2016-03-27 20:16:32 -0400
commit3b2b46aaefc3c98969173debfb3ee8e59ab6e5fd (patch)
treec8a7011f181b9c1c43415e32f9a6479572f6c2bc /app/model/dashboard.mod.php
parentec0eee8f6c5cccfc0a29ecd8cbd08be183e1eb92 (diff)
downloadscrott-3b2b46aaefc3c98969173debfb3ee8e59ab6e5fd.tar.gz
scrott-3b2b46aaefc3c98969173debfb3ee8e59ab6e5fd.zip
Add Dashboard model
Diffstat (limited to '')
-rw-r--r--app/model/dashboard.mod.php15
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()
+ {
+ }
+}
+
+?>