Files
thetool/application/PreorderProduct/PreorderProductController.php
2025-02-17 13:39:04 +01:00

22 lines
522 B
PHP

<?php
class PreorderProductController extends mfBaseController {
protected function init() {
$this->needlogin=true;
$me = new User();
$me->loadMe();
$this->me = $me;
$this->layout()->set("me",$me);
if(!$me->is(["Admin", "netowner", "salespartner"]) && !$me->can("Preorder")) {
$this->redirect("Dashboard");
}
}
protected function indexAction() {
$this->layout()->setTemplate("PreorderProduct/Index");
//$product =
}
}