config form 2017

This commit is contained in:
Vasil Kolev 2017-08-07 11:10:59 +03:00 committed by Openfest
parent 6f913742dd
commit 9d27521459
1 changed files with 10 additions and 1 deletions

View File

@ -1,5 +1,5 @@
<?php
function getSchedConfig($year = 2015) {
function getSchedConfig($year = 2016) {
$globalConfig = [
'lang' => 'bg',
'cfp_url' => 'https://cfp.openfest.org',
@ -32,6 +32,15 @@ function getSchedConfig($year = 2015) {
],
'hidden_language_tracks' => [25],
],
2017 => [
'conferenceId' => 4,
'eventTypes' => [
'lecture' => 7,
'workshop' => 8,
],
'hidden_language_tracks' => [25],
],
];
return array_merge($globalConfig, $config[$year]);