diff options
| author | Moritz Strohm <strohm@data-quest.de> | 2025-10-29 17:49:47 +0100 |
|---|---|---|
| committer | Moritz Strohm <strohm@data-quest.de> | 2025-10-29 17:49:47 +0100 |
| commit | a2ebda8110393e41926c7536734c5a153eb8e1c1 (patch) | |
| tree | 4d28847a79597a8c80425f11d2f8409608038c16 | |
| parent | b68216c1c4ff4d8c61921d3dc99648381361e36d (diff) | |
set holiday and vacation display to disabled in configurationstep-04887-biest-05985
| -rw-r--r-- | lib/classes/calendar/Helper.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/classes/calendar/Helper.php b/lib/classes/calendar/Helper.php index ace422f..7dc4ba3 100644 --- a/lib/classes/calendar/Helper.php +++ b/lib/classes/calendar/Helper.php @@ -194,10 +194,12 @@ class Helper 'minute' => '2-digit', 'omitZeroMinute' => false ], - 'weekends' => true, - 'hiddenDays' => $fullcalendar_hidden_days, + 'weekends' => true, + 'display_holidays' => false, + 'display_vacations' => false, + 'hiddenDays' => $fullcalendar_hidden_days, 'timeGridEventMinHeight' => 20, - 'eventSources' => [ + 'eventSources' => [ [ 'url' => \URLHelper::getURL( 'dispatch.php/calendar/schedule/data', |
