mirror of
https://github.com/flarum/core.git
synced 2025-07-24 18:21:33 +02:00
Add backwards compatibility layer for mail drivers
Support the old format (a simple list of available fields), in addition to the new format (a map from field names to their types + metadata). This will be removed after beta.12 is released.
This commit is contained in:
@@ -33,10 +33,20 @@ class MailDriverSerializer extends AbstractSerializer
|
||||
);
|
||||
}
|
||||
|
||||
$driver = $driver['driver'];
|
||||
$settings = $driver['driver']->availableSettings();
|
||||
|
||||
if (key($settings) === 0) {
|
||||
// BACKWARDS COMPATIBILITY: Support a simple list of fields (without
|
||||
// type or additional metadata).
|
||||
// Turns ["f1", "f2"] into {"f1": "", "f2": ""}
|
||||
// @deprecated since 0.1.0-beta.12
|
||||
$settings = array_reduce($settings, function ($memo, $key) {
|
||||
return [$key => ''] + $memo;
|
||||
}, []);
|
||||
}
|
||||
|
||||
return [
|
||||
'fields' => $driver->availableSettings(),
|
||||
'fields' => $settings,
|
||||
];
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user