Files
thetool/application/Dashboard/DashboardController.php
Frank Schubert 4ea4927931 Initial commit
2021-03-29 23:04:42 +02:00

16 lines
272 B
PHP

<?php
class DashboardController extends mfBaseController {
protected function init() {
$this->needlogin=true;
$me = new User();
$me->loadMe();
$this->me = $me;
$this->layout()->set("me",$me);
}
protected function indexAction() {
}
}