diff options
author | Malf Furious <m@lfurio.us> | 2016-03-27 20:19:10 -0400 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2016-03-27 20:19:10 -0400 |
commit | 4d69a5ecca13bbda5843c176e1bc4df514f079d7 (patch) | |
tree | f15454061b94928181c0a36cd48f0979b9dfc943 /app/model/dashboard.mod.php | |
parent | 7a2672164a73bb011a3d930df52c0643ee18457d (diff) | |
parent | e55a32c647cab450c2a6c6a3156c798dc0f70256 (diff) | |
download | scrott-4d69a5ecca13bbda5843c176e1bc4df514f079d7.tar.gz scrott-4d69a5ecca13bbda5843c176e1bc4df514f079d7.zip |
Merge branch 'feature/setting-modal' into dev
Diffstat (limited to '')
-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() + { + } +} + +?> |