aboutsummaryrefslogtreecommitdiff
path: root/model
diff options
context:
space:
mode:
authordedeibel2017-12-11 19:50:55 +0100
committerdedeibel2017-12-11 19:50:55 +0100
commit46852c4f9c77ab77b9bcc18c901f9f8640d9f305 (patch)
treeb726f35a485d5f6dde4267956d4ee5850f4ba837 /model
parent0d3b8468e30426bcde5e59834a04e0b7dcd84257 (diff)
Explained config migration with more detail
Diffstat (limited to 'model')
-rw-r--r--model/Conferences.php67
1 files changed, 39 insertions, 28 deletions
diff --git a/model/Conferences.php b/model/Conferences.php
index eb07327..575759e 100644
--- a/model/Conferences.php
+++ b/model/Conferences.php
@@ -72,34 +72,45 @@ class Conferences
return in_array($mandator, Conferences::listConferences());
}
- public static function loadConferenceConfig($mandator) {
- $configfile = forceslash(Conferences::MANDATOR_DIR).forceslash($mandator).'config.php';
- $config = include($configfile);
-
- if(!is_array($config)) {
- throw new ConfigException("Loading $configfile did not return an array. Maybe it's missing a return-statement?");
- }
-
- // Allow setting TRANSLATION simply to true and fill in default values for uniformity
- $rooms = $config['ROOMS'];
- foreach ($rooms as $slug => $room) {
- if (!isset($room['TRANSLATION'])) {
- $config['ROOMS'][$slug]['TRANSLATION'] = [];
- }
- elseif (! is_array($room['TRANSLATION'])) {
- if ($room['TRANSLATION'] === true) {
- $config['ROOMS'][$slug]['TRANSLATION'] = [[
- 'endpoint' => 'translated',
- 'label' => 'Translated'
- ]];
- }
- else {
- $config['ROOMS'][$slug]['TRANSLATION'] = [];
- }
- }
- }
- return $config;
- }
+ private static function migrateTranslationConfiguration($config) {
+ // Allow setting TRANSLATION simply to true and fill in default values for uniformity
+ $rooms = $config['ROOMS'];
+ foreach ($rooms as $slug => $room) {
+ // Translation is commented out, equaivalent of false
+ if (!isset($room['TRANSLATION'])) {
+ $config['ROOMS'][$slug]['TRANSLATION'] = [];
+ }
+ // Translation is present but not an array
+ elseif (! is_array($room['TRANSLATION'])) {
+ // Translation is true, set default values
+ if ($room['TRANSLATION'] === true) {
+ $config['ROOMS'][$slug]['TRANSLATION'] = [[
+ 'endpoint' => 'translated',
+ 'label' => 'Translated'
+ ]];
+ }
+ // Translation is false or garbage
+ else {
+ $config['ROOMS'][$slug]['TRANSLATION'] = [];
+ }
+ }
+ }
+
+ return $config;
+ }
+
+ public static function loadConferenceConfig($mandator) {
+ $configfile = forceslash(Conferences::MANDATOR_DIR).forceslash($mandator).'config.php';
+ $config = include($configfile);
+
+ if(!is_array($config)) {
+ throw new ConfigException("Loading $configfile did not return an array. Maybe it's missing a return-statement?");
+ }
+
+ $config = Conferences::migrateTranslationConfiguration($config);
+
+ return $config;
+ }
public static function getConference($mandator) {
return new Conference(Conferences::loadConferenceConfig($mandator), $mandator);