Update laravel smarty configuration

This commit is contained in:
DariusIII
2018-03-05 15:42:45 +01:00
parent 90e650a472
commit 71b32f75f4
3 changed files with 12 additions and 4 deletions
+7
View File
@@ -94,3 +94,10 @@ SCRAPE_IRC_SERVER=
SCRAPE_IRC_PORT=
SCRAPE_IRC_TLS=
SCRAPE_IRC_PASSWORD=
SMARTY_DEBUG=false
SMARTY_CACHING=false
SMARTY_CACHE_LIFE=120
SMARTY_COMPILE_CHECK=false
SMARTY_FORCE_COMPILE=false
SMARTY_CACHE_DRIVER=
+1
View File
@@ -1,4 +1,5 @@
2018-03-05 DariusIII
* Chg: Update laravel smarty configuration
* Chg: Update themes.php configuration file
* Chg: Add laravel-theme support for future usage
* Chg: Update htmlpurifier to latest version
+4 -4
View File
@@ -42,13 +42,13 @@ return [
'right_delimiter' => '}',
// path info
'template_path' => base_path().'/resources/views',
'template_path' => base_path().'/public/themes',
// smarty cache directory
'cache_path' => storage_path().'/framework/smarty/cache',
'cache_path' => storage_path().'/resources/smarty/cache',
// smarty template compiler
'compile_path' => storage_path().'/framework/smarty/compile',
'compile_path' => storage_path().'/resources/smarty/templates_c',
// smarty plugins
'plugins_paths' => [
@@ -57,7 +57,7 @@ return [
// smarty configure
'config_paths' => [
base_path().'/resources/smarty/config',
base_path().'/resources/smarty/configs',
],
/*