Add system.allowed_themes config key handling in Core\Theme

- Add Theme::setAllowedList method
- Update the allowed theme list on theme install/uninstall
- Add theme file inclusion on uninstall allowing for theme_uninstall function to be called
- Removing logging from frontend methods
pull/7044/head
Hypolite Petovan 2019-04-15 01:04:02 -04:00
parent 488e425416
commit 9227aab837
1 changed files with 26 additions and 10 deletions

View File

@ -34,6 +34,11 @@ class Theme
return $allowed_themes;
}
public static function setAllowedList(array $allowed_themes)
{
Config::set('system', 'allowed_themes', implode(',', $allowed_themes));
}
/**
* @brief Parse theme comment in search of theme infos.
*
@ -133,13 +138,20 @@ class Theme
// silently fail if theme was removed or if $theme is funky
if (file_exists("view/theme/$theme/theme.php")) {
Logger::log("Addons: uninstalling theme " . $theme);
include_once "view/theme/$theme/theme.php";
if (function_exists("{$theme}_uninstall")) {
$func = "{$theme}_uninstall";
$func = "{$theme}_uninstall";
if (function_exists($func)) {
$func();
}
}
$allowed_themes = Theme::getAllowedList();
$key = array_search($theme, $allowed_themes);
if ($key !== false) {
unset($allowed_themes[$key]);
Theme::setAllowedList($allowed_themes);
}
}
public static function install($theme)
@ -151,16 +163,20 @@ class Theme
return false;
}
Logger::log("Addons: installing theme $theme");
try {
include_once "view/theme/$theme/theme.php";
include_once "view/theme/$theme/theme.php";
if (function_exists("{$theme}_install")) {
$func = "{$theme}_install";
$func();
if (function_exists($func)) {
$func();
}
$allowed_themes = Theme::getAllowedList();
$allowed_themes[] = $theme;
Theme::setAllowedList($allowed_themes);
return true;
} else {
Logger::log("Addons: FAILED installing theme $theme");
} catch (\Exception $e) {
return false;
}
}