summaryrefslogtreecommitdiffstats
path: root/app/model
diff options
context:
space:
mode:
Diffstat (limited to 'app/model')
-rw-r--r--app/model/sysconf.mod.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/app/model/sysconf.mod.php b/app/model/sysconf.mod.php
new file mode 100644
index 0000000..11b8f4f
--- /dev/null
+++ b/app/model/sysconf.mod.php
@@ -0,0 +1,15 @@
+<?php
+
+require_once "class/model.class.php";
+
+class SysconfModel extends Model
+{
+ /*
+ * Default action
+ */
+ function default()
+ {
+ }
+}
+
+?>