Files
thetool/application/Dashboard/DashboardController.php
2021-07-29 17:07:35 +02:00

24 lines
393 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() {
}
protected function testAction() {
$b = new Building(7);
var_dump($b->getNewObjectCode());exit;
}
}