Files
thetool/application/File/FileController.php
Frank Schubert 1ae970564f Added Order Form
2021-07-29 20:08:43 +02:00

16 lines
295 B
PHP

<?php
class FileController extends mfBaseController {
protected function init() {
$this->needlogin=true;
$me = new User();
$me->loadMe();
$this->me = $me;
$this->layout()->set("me",$me);
/*if(!$me->isAdmin()) {
$this->redirect("Dashboard");
}*/
}
}