Files
thetool/application/Productgroup/ProductgroupController.php
Frank Schubert da952bfe3a Added Buildings
2021-07-13 23:00:16 +02:00

30 lines
449 B
PHP

<?php
class ProductgroupController 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");
}
}
protected function indexAction() {
}
protected function addAction() {
}
protected function editAction() {
}
}