summaryrefslogtreecommitdiffstats
path: root/app/model/dashboard.mod.php
diff options
context:
space:
mode:
authorMalf Furious <m@lfurio.us>2016-03-27 20:19:10 -0400
committerMalf Furious <m@lfurio.us>2016-03-27 20:19:10 -0400
commit4d69a5ecca13bbda5843c176e1bc4df514f079d7 (patch)
treef15454061b94928181c0a36cd48f0979b9dfc943 /app/model/dashboard.mod.php
parent7a2672164a73bb011a3d930df52c0643ee18457d (diff)
parente55a32c647cab450c2a6c6a3156c798dc0f70256 (diff)
downloadscrott-4d69a5ecca13bbda5843c176e1bc4df514f079d7.tar.gz
scrott-4d69a5ecca13bbda5843c176e1bc4df514f079d7.zip
Merge branch 'feature/setting-modal' into dev
Diffstat (limited to 'app/model/dashboard.mod.php')
-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()
+ {
+ }
+}
+
+?>