Add schedule config for 2023

This commit is contained in:
Vencislav Atanasov 2023-10-16 19:38:46 +03:00
parent 395122a411
commit 6a6a7200ea
1 changed files with 10 additions and 3 deletions

View File

@ -7,7 +7,7 @@ function getSchedConfig($year = 2017) {
'hidden_speakers' => [4],
'hidden_language_tracks' => [],
];
$config = [
2014 => [
'conferenceId' => 1,
@ -79,8 +79,15 @@ function getSchedConfig($year = 2017) {
],
'hidden_language_tracks' => [73],
],
2023 => [
'conferenceId' => 10,
'eventTypes' => [
'lecture' => 20,
'workshop' => 19,
],
'hidden_language_tracks' => [78],
],
];
return array_merge($globalConfig, $config[$year]);
}