X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FCore%2FTheme.php;h=57dfaa4d634ca5522493d5c4d1055e4b6ed603bd;hb=d5373c583bc12d2104659aaf6386d2b9e28ec68d;hp=03f1dfd9cd45c0de6a9533fcde4458c2008e0058;hpb=39a87b1f5484235afbad809ae5d5d2c7b9c4ebb7;p=friendica.git diff --git a/src/Core/Theme.php b/src/Core/Theme.php index 03f1dfd9cd..57dfaa4d63 100644 --- a/src/Core/Theme.php +++ b/src/Core/Theme.php @@ -1,6 +1,6 @@ startRecording('file'); $theme_file = file_get_contents("view/theme/$theme/theme.php"); - DI::profiler()->saveTimestamp($stamp1, "file", System::callstack()); + DI::profiler()->stopRecording(); $result = preg_match("|/\*.*\*/|msU", $theme_file, $matches); @@ -158,6 +158,8 @@ class Theme if (function_exists($func)) { $func(); } + + Hook::delete(['file' => "view/theme/$theme/theme.php"]); } $allowed_themes = Theme::getAllowedList(); @@ -212,7 +214,7 @@ class Theme $theme = $a->getCurrentTheme(); - $parent = Strings::sanitizeFilePathItem($a->theme_info['extends'] ?? $theme); + $parent = Strings::sanitizeFilePathItem($a->getThemeInfoValue('extends', $theme)); $paths = [ "view/theme/$theme/$file", @@ -269,7 +271,7 @@ class Theme $theme = Strings::sanitizeFilePathItem($theme); $a = DI::app(); - $base_theme = $a->theme_info['extends'] ?? ''; + $base_theme = $a->getThemeInfoValue('extends') ?? ''; if (file_exists("view/theme/$theme/config.php")) { return "view/theme/$theme/config.php";