summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
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()
+ {
+ }
+}
+
+?>