fix lost of settings between plugins and themes fix #7 thx @brol

This commit is contained in:
Jean-Christian Denis 2023-01-03 23:45:39 +01:00
parent b0f783df74
commit 358bce14f5
Signed by: JcDenis
GPG key ID: 1B5B8C5B90B6C951

View file

@ -82,7 +82,7 @@ class Manage
return empty($_REQUEST['config']) ? null : self::$improve->module($_REQUEST['config']); return empty($_REQUEST['config']) ? null : self::$improve->module($_REQUEST['config']);
} }
private static function getPreference(): array private static function getPreference(bool $all = false): array
{ {
try { try {
if (!empty(self::$type)) { if (!empty(self::$type)) {
@ -90,7 +90,7 @@ class Manage
if (is_string($preferences)) { if (is_string($preferences)) {
$preferences = unserialize($preferences); $preferences = unserialize($preferences);
if (is_array($preferences)) { if (is_array($preferences)) {
return array_key_exists(self::$type, $preferences) ? $preferences[self::$type] : []; return $all ? $preferences : (array_key_exists(self::$type, $preferences) ? $preferences[self::$type] : []);
} }
} }
} }
@ -103,6 +103,7 @@ class Manage
private static function setPreferences(): bool private static function setPreferences(): bool
{ {
if (!empty($_POST['save_preferences'])) { if (!empty($_POST['save_preferences'])) {
$preferences = self::getPreference(true);
$preferences[self::$type] = []; $preferences[self::$type] = [];
if (!empty($_POST['actions'])) { if (!empty($_POST['actions'])) {
foreach (self::$improve->modules() as $action) { foreach (self::$improve->modules() as $action) {