Files
thetool/application/Pop/PopController.php
Frank Schubert 5241cfd175 Added Network
2021-06-24 22:34:45 +02:00

17 lines
297 B
PHP

<?php
class PopController 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");
}*/
}
}