Mobile Integration: * in footer.php js eingefügt damit das mobile Menu funktioniert * in menu.php bzw. app.css neue Klasse eingefügt mobile-hide um in der mobilen Version Menupünkte zu verstecken Pop Multiple Networks * Pops können nun mehrere Netzgebiete haben * Netzgebiete und Pop ansicht angepasst * (Script muss ausgeführt werden um die PopNetwork Table vom Bestand zu befüllen) DataTables responsible update * Datatables update und responsible addon * Diverse Anpassungen für Responsible in: - Pops, Geräte Hersteller, Geräte Typen, Devices, Benutzer Anpassungen auf neu getProperty Migrations * PopNetwork * Poprackmodulepatch
52 lines
953 B
PHP
52 lines
953 B
PHP
<?php
|
|
|
|
class TimerecordingReportController extends mfBaseController
|
|
{
|
|
|
|
protected function init()
|
|
{
|
|
$this->needlogin = true;
|
|
$me = new User();
|
|
$me->loadMe();
|
|
$this->me = $me;
|
|
$this->layout()->set("me", $me);
|
|
|
|
if (!$me->can(["Fibu"])) {
|
|
$this->redirect("Dashboard");
|
|
}
|
|
}
|
|
|
|
protected function indexAction()
|
|
{
|
|
|
|
$this->layout()->setTemplate("TimerecordingReport/Index");
|
|
$timerecordingCategoriess = TimerecordingCategoryModel::getAll();
|
|
$this->layout()->set("timerecordingCategoriess", $timerecordingCategoriess);
|
|
$timerecordings = TimerecordingModel::getAll();
|
|
$this->layout()->set("timerecordings", $timerecordings);
|
|
|
|
}
|
|
|
|
protected function addAction()
|
|
{
|
|
|
|
|
|
}
|
|
|
|
protected function editAction()
|
|
{
|
|
|
|
}
|
|
|
|
protected function saveAction()
|
|
{
|
|
}
|
|
|
|
|
|
protected function deleteAction()
|
|
{
|
|
|
|
}
|
|
|
|
}
|