Files
thetool/application/BillingVoicenumber/BillingVoicenumberController.php
2024-07-05 10:45:22 +02:00

19 lines
351 B
PHP

<?php
class BillingVoicenumberController 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"])) {
$this->redirect("Dashboard");
}
}
}