diff --git a/Changelog b/Changelog index dfe4faed7..5578265df 100755 --- a/Changelog +++ b/Changelog @@ -1,4 +1,5 @@ 2018-03-05 DariusIII + * Chg: Update themes.php configuration file * Chg: Add laravel-theme support for future usage * Chg: Update htmlpurifier to latest version * Chg: Fix bad logic in additional postprocessing settings check diff --git a/config/themes.php b/config/themes.php index 3db36d06e..f8be55c8e 100644 --- a/config/themes.php +++ b/config/themes.php @@ -11,7 +11,7 @@ return [ |-------------------------------------------------------------------------- */ - 'themes_path' => null, // eg: base_path('resources/themes') + 'themes_path' => 'public/themes', // eg: base_path('resources/themes') /* |-------------------------------------------------------------------------- @@ -58,6 +58,31 @@ return [ */ 'themes' => [ + 'Charisma' => [ + 'extends' => null, + 'views-path' => 'Charisma', + 'asset-path' => 'public/themes/shared/assets' + ], + 'Gamma' => [ + 'extends' => null, + 'views-path' => 'Gamma', + 'asset-path' => 'public/themes/shared/assets' + ], + 'Gentele' => [ + 'extends' => null, + 'views-path' => 'Gentele', + 'asset-path' => 'public/themes/shared/assets' + ], + 'Omicron' => [ + 'extends' => null, + 'views-path' => 'Omicron', + 'asset-path' => 'public/themes/shared/assets' + ], + 'admin' => [ + 'extends' => null, + 'views-path' => 'admin', + 'asset-path' => 'public/themes/shared/assets' + ], // Add your themes here. These settings will override theme.json settings defined for each theme