diff options
Diffstat (limited to 'app/controller')
| -rw-r--r-- | app/controller/dashboard.control.php | 27 | 
1 files changed, 27 insertions, 0 deletions
| diff --git a/app/controller/dashboard.control.php b/app/controller/dashboard.control.php new file mode 100644 index 0000000..4ee4b38 --- /dev/null +++ b/app/controller/dashboard.control.php @@ -0,0 +1,27 @@ +<?php + +require_once "class/controller.class.php"; +require_once "model/dashboard.mod.php"; + +/* + * Main page, Dashboard -- Overview information for user, groups, and pads + */ +class Dashboard extends Controller +{ +    /* +     * Controller implementation +     */ +    function handle($argv) +    { +        $mod = new DashboardModel(); +        $this->action_default($mod); +    } + +    function action_default($mod) +    { +        $mod->deflt(); +        include "view/dashboard/default.view.php"; +    } +} + +?> | 
