This commit is contained in:
Dennis Eichhorn 2018-02-03 13:09:09 +01:00
parent d7ed665d72
commit c49a439ee8
5 changed files with 7 additions and 8 deletions

View File

@ -19,7 +19,6 @@ use phpOMS\Module\UpdateAbstract;
use phpOMS\System\File\Directory; use phpOMS\System\File\Directory;
use phpOMS\Module\InfoManager; use phpOMS\Module\InfoManager;
/** /**
* Navigation class. * Navigation class.
* *

View File

@ -27,6 +27,6 @@ use phpOMS\Stdlib\Base\Enum;
abstract class PermissionState extends Enum abstract class PermissionState extends Enum
{ {
/* public */ const DASHBOARD = 1; /* public */ const DASHBOARD = 1;
/* public */ const EVENT = 2; /* public */ const EVENT = 2;
/* public */ const CALENDAR = 3; /* public */ const CALENDAR = 3;
} }

View File

@ -1,9 +1,9 @@
(function (omsModule, undefined) { (function (omsModule, undefined) {
omsModule.Calendar = function () { omsModule.Calendar = function () {
this.layout = omsModule.Calendar.layout.BLOCKS; this.layout = omsModule.Calendar.layout.BLOCKS;
this.interval = null; this.interval = null;
this.selectedElement = null; this.selectedElement = null;
this.subCalendars = []; this.subCalendars = [];
}; };