-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathconfig-events.php
More file actions
29 lines (29 loc) · 927 Bytes
/
config-events.php
File metadata and controls
29 lines (29 loc) · 927 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
$eventsConfig = [
'2024' => [
'startTime' => '2024-11-02 09:45:00',
'endTime' => '2024-11-03 18:15:00',
'streams' => [[
'startTime' => '2024-11-02 09:45:00',
'endTime' => '2024-11-02 19:00:00',
'tracks' => ['hall-a', 'hall-b'],
], [
'startTime' => '2024-11-03 09:45:00',
'endTime' => '2024-11-03 18:15:00',
'tracks' => ['hall-a', 'hall-b'],
]],
],
'2025' => [
'startTime' => '2025-10-18 09:45:00',
'endTime' => '2025-10-19 18:15:00',
'streams' => [[
'startTime' => '2025-10-18 09:45:00',
'endTime' => '2025-10-18 19:00:00',
'tracks' => ['hall-a', 'hall-b'],
], [
'startTime' => '2025-10-19 09:45:00',
'endTime' => '2025-10-19 18:15:00',
'tracks' => ['hall-a', 'hall-b'],
]],
],
];