$autoload_filters = array()
[line 357]
This indicates which filters are automatically loaded into Smarty.
Smarty Configuration Section
$cache_dir = 'cache'
[line 169]
The name of the directory for cache files.
Smarty Configuration Section
$cache_handler_func = null
[line 333]
The function used for cache file handling. If not set, built-in caching is used.
Smarty Configuration Section
$cache_lifetime = 3600
[line 180]
This is the number of seconds cached content will persist.
Smarty Configuration Section
- 0 = always regenerate cache
- -1 = never expires
$cache_modified_check = false
[line 190]
Only used when $caching is enabled. If true, then If-Modified-Since headers are respected with cached content, and appropriate HTTP headers are sent.
Smarty Configuration Section This way repeated hits to a cached page do not send the entire page to the client every time.
$caching = 0
[line 162]
This enables template caching.
Smarty Configuration Section
- 0 = no caching
- 1 = use class cache_lifetime value
- 2 = use cache_lifetime in cache file
$compiler_class = 'Smarty_Compiler'
[line 411]
The class used for compiling templates.
$compiler_file = 'Smarty_Compiler.class.php'
[line 404]
The file that contains the compiler class. This can a full pathname, or relative to the php_include path.
$compile_check = true
[line 143]
This tells Smarty whether to check for recompiling or not. Recompiling does not need to happen unless a template or config file is changed.
Smarty Configuration Section Typically you enable this during development, and disable for production.
$compile_dir = 'templates_c'
[line 91]
The directory where compiled templates are located.
Smarty Configuration Section
$compile_id = null
[line 293]
Set this if you want different sets of compiled files for the same templates. This is useful for things like different languages.
Smarty Configuration Section Instead of creating separate sets of templates per language, you set different compile_ids like 'en' and 'de'.
$config_booleanize = true
[line 373]
This tells whether or not to automatically booleanize config file variables.
If enabled, then the strings "on", "true", and "yes" are treated as boolean true, and "off", "false" and "no" are treated as boolean false.
$config_class = 'Config_File'
[line 418]
The class used to load config vars.
$config_dir = 'configs'
[line 98]
The directory where config files are located.
Smarty Configuration Section
$config_fix_newlines = true
[line 387]
This tells whether or not automatically fix newlines in config files.
It basically converts \r (mac) or \r\n (dos) to \n
$config_overwrite = true
[line 366]
This tells if config file vars of the same name overwrite each other or not.
if disabled, same name variables are accumulated in an array.
$config_read_hidden = false
[line 381]
This tells whether hidden sections [.foobar] are readable from the tempalates or not. Normally you would never allow this since that is the point behind hidden sections: the application can access them, but the templates cannot.
$debugging = false
[line 114]
If debugging is enabled, a debug console window will display when the page loads (make sure your browser allows unrequested popup windows)
Smarty Configuration Section
$debugging_ctrl = 'NONE'
[line 133]
This determines if debugging is enable-able from the browser.
Smarty Configuration Section
- NONE => no debugging control allowed
- URL => enable debugging when SMARTY_DEBUG is found in the URL.
$debug_tpl = ''
[line 122]
This is the path to the debug console template. If not set, the default one will be used.
Smarty Configuration Section
$default_modifiers = array()
[line 312]
This is a list of the modifiers to apply to all template variables.
Smarty Configuration Section Put each modifier in a separate array element in the order you want them applied. example: array('escape:"htmlall"');
$default_resource_type = 'file'
[line 326]
This is the resource type to be used when not specified
Smarty Configuration Section at the beginning of the resource path. examples: $smarty->display('file:index.tpl'); $smarty->display('db:index.tpl'); $smarty->display('index.tpl'); // will use default resource type {include file="file:index.tpl"} {include file="db:index.tpl"} {include file="index.tpl"} {* will use default resource type *}
$default_template_handler_func = ''
[line 396]
If a template cannot be found, this PHP function will be executed.
Useful for creating templates on-the-fly or other special action.
$force_compile = false
[line 151]
This forces templates to compile every time. Useful for development or debugging.
Smarty Configuration Section
$global_assign = array('HTTP_SERVER_VARS' => array('SCRIPT_NAME'))
[line 343]
These are the variables from the globals array that are assigned to all templates automatically. This isn't really necessary any more, you can use the $smarty var to access them directly.
Smarty Configuration Section
$left_delimiter = '{'
[line 257]
The left delimiter used for the template tags.
Smarty Configuration Section
$php_handling = SMARTY_PHP_PASSTHRU
[line 204]
This determines how Smarty handles "<?php ... ?>" tags in templates.
Smarty Configuration Section possible values:
- SMARTY_PHP_PASSTHRU -> print tags as plain text
- SMARTY_PHP_QUOTE -> escape tags as entities
- SMARTY_PHP_REMOVE -> remove php tags
- SMARTY_PHP_ALLOW -> execute php tags
$plugins_dir = array('plugins')
[line 105]
An array of directories searched for plugins.
Smarty Configuration Section
$request_use_auto_globals = false
[line 283]
Indicates wether $HTTP_*_VARS[] (request_use_auto_globals=false)
Smarty Configuration Section are uses as request-vars or $_*[]-vars. note: if request_use_auto_globals is true, then $request_vars_order has no effect, but the php-ini-value "gpc_order"
$request_vars_order = "EGPCS"
[line 273]
The order in which request variables are registered, similar to variables_order in php.ini E = Environment, G = GET, P = POST, C = Cookies, S = Server
Smarty Configuration Section
$right_delimiter = '}'
[line 264]
The right delimiter used for the template tags.
Smarty Configuration Section
$secure_dir = array()
[line 223]
This is the list of template directories that are considered secure. This is used only if $security is enabled. One directory per array element. $template_dir is in this list implicitly.
Smarty Configuration Section
$security = false
[line 214]
This enables template security. When enabled, many things are restricted
Smarty Configuration Section in the templates that normally would go unchecked. This is useful when untrusted parties are editing templates and you want a reasonable level of security. (no direct execution of PHP in templates for example)
$security_settings = array(
'PHP_HANDLING' => false,
'IF_FUNCS' => array('array', 'list',
'isset', 'empty',
'count', 'sizeof',
'in_array', 'is_array',
'true','false'),'INCLUDE_ANY'=>false,'PHP_TAGS'=>false,'MODIFIER_FUNCS'=>array('count'),'ALLOW_CONSTANTS'=>false)
[line 231]
These are the security settings for Smarty. They are used only when $security is enabled.
Smarty Configuration Section
$template_dir = 'templates'
[line 84]
The name of the directory where templates are located.
Smarty Configuration Section
$trusted_dir = array()
[line 250]
This is an array of directories where trusted php scripts reside.
Smarty Configuration Section $security is disabled during their inclusion/execution.
$undefined = null
[line 350]
The value of "undefined". Leave it alone :-)
Smarty Configuration Section
$use_sub_dirs = true
[line 303]
This tells Smarty whether or not to use sub dirs in the cache/ and templates_c/ directories. sub directories better organized, but may not work well with PHP safe mode enabled.
Smarty Configuration Section