forked from rtp-ch/smarty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_typoscript_setup.txt
35 lines (25 loc) · 1.12 KB
/
ext_typoscript_setup.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Default Smarty class variables
// For details check http://smarty.php.net/manual/en/api.variables.php
plugin.smarty {
// php error_reporting level inside of display() and fetch()
error_reporting = E_ALL ^ E_NOTICE
// Alternate ways to enable debugging. NONE means no alternate methods are allowed.
// URL means when the keyword SMARTY_DEBUG is found in the QUERY_STRING
debugging_ctrl = NONE
// smarty debug template
debug_tpl = EXT:smarty/debug/smarty_debug.tpl
// Makes Smarty regenerate the template each time the script is called.
// Can be set to true for development and debugging purposes
force_compile = false
// Location of the Typo3 Smarty plugins, which provide FE functions such as translating
// textblocks using Typo3 methods inside of Smarty templates
plugins_dir = EXT:smarty/typo3_plugins
// Default location of the Smarty cache files
cache_dir = typo3temp/smarty_cache
// Default location of the compiled Smarty template files
compile_dir = typo3temp/smarty_compile
// Load default smarty prefilters
autoload_filters.pre.0 = conditions
autoload_filters.pre.1 = dots
autoload_filters.post.0 = dots
}