From 521d10675a2c31a3d900b4c0141d3a1f6a28d6c2 Mon Sep 17 00:00:00 2001
From: Simon Wisselink
footer.tpl:
-Smarty will apply the escape modifier +
Smarty will apply the escape modifier
to the value assigned to the variable
companyName
and replace {$companyName|escape}
with the result.
<small>Copyright AC & ME Corp.</small>
diff --git a/5.x/api/variables/config-files/index.html b/5.x/api/variables/config-files/index.html
index 40f03bc7..84db7dc7 100644
--- a/5.x/api/variables/config-files/index.html
+++ b/5.x/api/variables/config-files/index.html
@@ -408,8 +408,8 @@
-
- Functions
+
+ Tags
@@ -983,14 +983,14 @@
Values of config file variables can be in +
Values of config file variables can be in quotes, but not necessary. You can use either single or double quotes. If you have a value that spans more than one line, enclose the entire value with triple quotes ("""). You can put comments into config @@ -2292,12 +2292,11 @@ the last one will be used unless you call: When config overwrite is disabled, Smarty will create arrays of config file variables when it encounters multiple entries with the same name.
-See also {config_load}
,
-$config_overwrite
,
-$default_config_handler_func
,
-getConfigVars()
,
-clearConfig()
and
-configLoad()
See also {config_load}
,
+$default_config_handler_func
,
+getConfigVars()
,
+clearConfig()
and
+configLoad()
You can restrict the methods and properties that can be accessed by listing them in an array as the third registration parameter.
By default, parameters passed to objects through the templates are -passed the same way custom functions get +passed the same way custom tags get them. An associative array is passed as the first parameter, and the smarty object as the second. If you want the parameters passed one at a time for each argument like traditional object parameter passing, set diff --git a/5.x/api/variables/static-class-methods/index.html b/5.x/api/variables/static-class-methods/index.html index 53524db1..091d1f6e 100644 --- a/5.x/api/variables/static-class-methods/index.html +++ b/5.x/api/variables/static-class-methods/index.html @@ -408,8 +408,8 @@
All Smarty template tags are enclosed within delimiters. By default
these are {
and }
, but they can be
-changed.
For the examples in this manual, we will assume that you are using the default delimiters. In Smarty, all content outside of delimiters is displayed as static content, or unchanged. When Smarty encounters template tags, it attempts to interpret them, and displays the appropriate output in their place.
-The basis components of the Smarty syntax are:
+The basic components of the Smarty syntax are:
Smarty's default delimiters { and } cleanly represent presentational
content. However, if another set of delimiters suit your needs better,
you can change them with Smarty's
-$left_delimiter
and
-$right_delimiter
values.
setLeftDelimiter()
and setRightDelimiter()
methods.
Note
Changing delimiters affects ALL template syntax and escapement. Be @@ -2224,8 +2223,8 @@ them.
<?php
-$smarty->left_delimiter = '<!--{';
-$smarty->right_delimiter = '}-->';
+$smarty->setLeftDelimiter('<!--{');
+$smarty->setRightDelimiter('}-->');
$smarty->assign('foo', 'bar');
$smarty->assign('name', 'Albert');
diff --git a/5.x/designers/language-basic-syntax/language-syntax-attributes/index.html b/5.x/designers/language-basic-syntax/language-syntax-attributes/index.html
index 06ba2e09..12efc270 100644
--- a/5.x/designers/language-basic-syntax/language-syntax-attributes/index.html
+++ b/5.x/designers/language-basic-syntax/language-syntax-attributes/index.html
@@ -9,7 +9,7 @@
-
+
@@ -412,8 +412,8 @@
-
-
- Functions
+
+ Tags
@@ -1028,14 +1028,14 @@
@@ -1370,14 +1370,14 @@
@@ -2175,7 +2175,7 @@
Attributes
-Most of the functions take attributes that
+
Most of the tags take attributes that
specify or modify their behavior. Attributes to Smarty functions are
much like HTML attributes. Static values don't have to be enclosed in
quotes, but it is required for literal strings. Variables with or
diff --git a/5.x/designers/language-basic-syntax/language-syntax-comments/index.html b/5.x/designers/language-basic-syntax/language-syntax-comments/index.html
index 6bf05624..1c8578af 100644
--- a/5.x/designers/language-basic-syntax/language-syntax-comments/index.html
+++ b/5.x/designers/language-basic-syntax/language-syntax-comments/index.html
@@ -453,8 +453,8 @@
-
-
- Functions
+
+ Tags
@@ -1028,14 +1028,14 @@
@@ -1370,14 +1370,14 @@
@@ -2176,7 +2176,7 @@
Comments
Template comments are surrounded by asterisks, and that is surrounded by
-the delimiter tags like so:
+the delimiter tags like so:
Examples
diff --git a/5.x/designers/language-basic-syntax/language-syntax-operators/index.html b/5.x/designers/language-basic-syntax/language-syntax-operators/index.html
index d85f2d60..16d1832d 100644
--- a/5.x/designers/language-basic-syntax/language-syntax-operators/index.html
+++ b/5.x/designers/language-basic-syntax/language-syntax-operators/index.html
@@ -12,7 +12,7 @@
-
+
@@ -474,8 +474,8 @@
-
-
- Functions
+
+ Tags
@@ -1049,14 +1049,14 @@
@@ -1391,14 +1391,14 @@
diff --git a/5.x/designers/language-basic-syntax/language-syntax-quotes/index.html b/5.x/designers/language-basic-syntax/language-syntax-quotes/index.html
index 983c493d..ef954339 100644
--- a/5.x/designers/language-basic-syntax/language-syntax-quotes/index.html
+++ b/5.x/designers/language-basic-syntax/language-syntax-quotes/index.html
@@ -412,8 +412,8 @@
-
-
- Functions
+
+ Tags
@@ -1028,14 +1028,14 @@
@@ -1370,14 +1370,14 @@
diff --git a/5.x/designers/language-basic-syntax/language-syntax-functions/index.html b/5.x/designers/language-basic-syntax/language-syntax-tags/index.html
similarity index 98%
rename from 5.x/designers/language-basic-syntax/language-syntax-functions/index.html
rename to 5.x/designers/language-basic-syntax/language-syntax-tags/index.html
index d32556d7..4fa0e8db 100644
--- a/5.x/designers/language-basic-syntax/language-syntax-functions/index.html
+++ b/5.x/designers/language-basic-syntax/language-syntax-tags/index.html
@@ -19,7 +19,7 @@
- Functions - Smarty Documentation
+ Tags - Smarty Documentation
@@ -67,7 +67,7 @@
-
+
Skip to content
@@ -106,7 +106,7 @@
- Functions
+ Tags
@@ -422,12 +422,12 @@
- Functions
+ Tags
@@ -1028,14 +1028,14 @@
@@ -1370,14 +1370,14 @@
@@ -2174,7 +2174,7 @@
-Functions
+Tags
Every Smarty tag either prints a variable or
invokes some sort of function. These are processed and displayed by
enclosing the function and its attributes
@@ -2206,8 +2206,8 @@ within delimiters like so: {funcname attr1="val1" attr2="val2"}
.
-
-
Custom functions are additional functions implemented via
- plugins. They can be modified to your liking, or you can
+
Custom tags are additional tags implemented via
+ plugins. They can be modified to your liking, or you can
create new ones. {html_options}
is an example of a custom function.
diff --git a/5.x/designers/language-basic-syntax/language-syntax-variables/index.html b/5.x/designers/language-basic-syntax/language-syntax-variables/index.html
index f3a7d858..10c499d9 100644
--- a/5.x/designers/language-basic-syntax/language-syntax-variables/index.html
+++ b/5.x/designers/language-basic-syntax/language-syntax-variables/index.html
@@ -453,8 +453,8 @@
-
-
- Functions
+
+ Tags
@@ -1028,14 +1028,14 @@
@@ -1370,14 +1370,14 @@
diff --git a/5.x/designers/language-builtin-functions/index.html b/5.x/designers/language-builtin-functions/index.html
index f59e71e8..decf826c 100644
--- a/5.x/designers/language-builtin-functions/index.html
+++ b/5.x/designers/language-builtin-functions/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -987,14 +987,14 @@
@@ -1339,14 +1339,14 @@
@@ -2132,7 +2132,7 @@
Smarty comes with several built-in functions. These built-in functions
are the integral part of the smarty template engine. They are compiled
into corresponding inline PHP code for maximum performance.
-You cannot create your own custom functions with the same name; and you
+
You cannot create your own custom tags with the same name; and you
should not need to modify the built-in functions.
A few of these functions have an assign
attribute which collects the
result the function to a named template variable instead of being
diff --git a/5.x/designers/language-builtin-functions/language-function-append/index.html b/5.x/designers/language-builtin-functions/language-function-append/index.html
index d6b7bf72..2c0ed5ff 100644
--- a/5.x/designers/language-builtin-functions/language-function-append/index.html
+++ b/5.x/designers/language-builtin-functions/language-function-append/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -987,14 +987,14 @@
@@ -1384,14 +1384,14 @@
diff --git a/5.x/designers/language-builtin-functions/language-function-assign/index.html b/5.x/designers/language-builtin-functions/language-function-assign/index.html
index c44c147c..658a43af 100644
--- a/5.x/designers/language-builtin-functions/language-function-assign/index.html
+++ b/5.x/designers/language-builtin-functions/language-function-assign/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -987,14 +987,14 @@
@@ -1391,14 +1391,14 @@
diff --git a/5.x/designers/language-builtin-functions/language-function-block/index.html b/5.x/designers/language-builtin-functions/language-function-block/index.html
index 30b93c22..9f3a36aa 100644
--- a/5.x/designers/language-builtin-functions/language-function-block/index.html
+++ b/5.x/designers/language-builtin-functions/language-function-block/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -987,14 +987,14 @@
@@ -1384,14 +1384,14 @@
@@ -2204,7 +2204,7 @@
{block}
{block}
is used to define a named area of template source for template
-inheritance. For details see section of Template
+inheritance. For details see section of Template
Inheritance.
The {block}
template source area of a child template will replace the
corresponding areas in the parent template(s).
@@ -2372,7 +2372,7 @@ to add it to each child block as well.
</head>
</html>
-See also Template
+See also Template
Inheritance,
$smarty.block.parent
,
$smarty.block.child
, and
diff --git a/5.x/designers/language-builtin-functions/language-function-call/index.html b/5.x/designers/language-builtin-functions/language-function-call/index.html
index fcff7468..bc33f585 100644
--- a/5.x/designers/language-builtin-functions/language-function-call/index.html
+++ b/5.x/designers/language-builtin-functions/language-function-call/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -987,14 +987,14 @@
@@ -1384,14 +1384,14 @@
diff --git a/5.x/designers/language-builtin-functions/language-function-capture/index.html b/5.x/designers/language-builtin-functions/language-function-capture/index.html
index 4034ab24..a1f88b6d 100644
--- a/5.x/designers/language-builtin-functions/language-function-capture/index.html
+++ b/5.x/designers/language-builtin-functions/language-function-capture/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -987,14 +987,14 @@
@@ -1384,14 +1384,14 @@
diff --git a/5.x/designers/language-builtin-functions/language-function-config-load/index.html b/5.x/designers/language-builtin-functions/language-function-config-load/index.html
index d1cd63bd..23c4d6c7 100644
--- a/5.x/designers/language-builtin-functions/language-function-config-load/index.html
+++ b/5.x/designers/language-builtin-functions/language-function-config-load/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -987,14 +987,14 @@
@@ -1377,14 +1377,14 @@
diff --git a/5.x/designers/language-builtin-functions/language-function-debug/index.html b/5.x/designers/language-builtin-functions/language-function-debug/index.html
index 1930c65c..ce46e650 100644
--- a/5.x/designers/language-builtin-functions/language-function-debug/index.html
+++ b/5.x/designers/language-builtin-functions/language-function-debug/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -987,14 +987,14 @@
@@ -1339,14 +1339,14 @@
diff --git a/5.x/designers/language-builtin-functions/language-function-extends/index.html b/5.x/designers/language-builtin-functions/language-function-extends/index.html
index 2db11b69..af13a0e9 100644
--- a/5.x/designers/language-builtin-functions/language-function-extends/index.html
+++ b/5.x/designers/language-builtin-functions/language-function-extends/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -987,14 +987,14 @@
@@ -1377,14 +1377,14 @@
@@ -2190,7 +2190,7 @@
{extends}
{extends}
tags are used in child templates in template inheritance for
-extending parent templates. For details see section of Template
+extending parent templates. For details see section of Template
Inheritance.
-
@@ -2202,7 +2202,7 @@ Inheritance
.
is ignored.
-
-
Use the syntax for template resources to extend files
+
Use the syntax for template resources to extend files
outside the $template_dir
directory.
@@ -2234,7 +2234,7 @@ distinguish between different $parent_file
s.
-See also Template Inheritance
+
See also Template Inheritance
and {block}
.
diff --git a/5.x/designers/language-builtin-functions/language-function-for/index.html b/5.x/designers/language-builtin-functions/language-function-for/index.html
index 6d92b14b..6b9d2519 100644
--- a/5.x/designers/language-builtin-functions/language-function-for/index.html
+++ b/5.x/designers/language-builtin-functions/language-function-for/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -987,14 +987,14 @@
@@ -1384,14 +1384,14 @@
diff --git a/5.x/designers/language-builtin-functions/language-function-foreach/index.html b/5.x/designers/language-builtin-functions/language-function-foreach/index.html
index 7b3eb6d0..182310b9 100644
--- a/5.x/designers/language-builtin-functions/language-function-foreach/index.html
+++ b/5.x/designers/language-builtin-functions/language-function-foreach/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -987,14 +987,14 @@
@@ -1433,14 +1433,14 @@
diff --git a/5.x/designers/language-builtin-functions/language-function-function/index.html b/5.x/designers/language-builtin-functions/language-function-function/index.html
index 9870b1d4..9d7e0f51 100644
--- a/5.x/designers/language-builtin-functions/language-function-function/index.html
+++ b/5.x/designers/language-builtin-functions/language-function-function/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -987,14 +987,14 @@
@@ -1377,14 +1377,14 @@
diff --git a/5.x/designers/language-builtin-functions/language-function-if/index.html b/5.x/designers/language-builtin-functions/language-function-if/index.html
index 15b4ff7e..1ed70233 100644
--- a/5.x/designers/language-builtin-functions/language-function-if/index.html
+++ b/5.x/designers/language-builtin-functions/language-function-if/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -987,14 +987,14 @@
@@ -1377,14 +1377,14 @@
diff --git a/5.x/designers/language-builtin-functions/language-function-include/index.html b/5.x/designers/language-builtin-functions/language-function-include/index.html
index b1ae2a10..5931a880 100644
--- a/5.x/designers/language-builtin-functions/language-function-include/index.html
+++ b/5.x/designers/language-builtin-functions/language-function-include/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -987,14 +987,14 @@
@@ -1384,14 +1384,14 @@
@@ -2283,7 +2283,7 @@ available within the included template.
including template.
-
-
Use the syntax for template resources to {include}
+
Use the syntax for template resources to {include}
files outside of the $template_dir
directory.
@@ -2410,7 +2410,7 @@ current template.
{* include a multi $variable template - eg amber/links.view.tpl *}
{include file="$style_dir/$module.$view.tpl"}
See also template resources and +
See also template resources and componentized templates.
diff --git a/5.x/designers/language-builtin-functions/language-function-insert/index.html b/5.x/designers/language-builtin-functions/language-function-insert/index.html index c6e9d91f..7aaaa85f 100644 --- a/5.x/designers/language-builtin-functions/language-function-insert/index.html +++ b/5.x/designers/language-builtin-functions/language-function-insert/index.html @@ -405,8 +405,8 @@{literal}{/literal}
to escape blocks of
text eg Javascript or CSS. See also the complementary
-{$smarty.ldelim}
.
+{$smarty.ldelim}
.
{* this will print literal delimiters out of the template *}
{ldelim}funcname{rdelim} is how functions look in Smarty!
diff --git a/5.x/designers/language-builtin-functions/language-function-literal/index.html b/5.x/designers/language-builtin-functions/language-function-literal/index.html
index 20010fe5..d84e6766 100644
--- a/5.x/designers/language-builtin-functions/language-function-literal/index.html
+++ b/5.x/designers/language-builtin-functions/language-function-literal/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -987,14 +987,14 @@
@@ -1339,14 +1339,14 @@
@@ -2132,7 +2132,7 @@
{literal}
tags allow a block of data to be taken literally. This is
typically used around Javascript or stylesheet blocks where {curly
braces} would interfere with the template
-delimiter syntax. Anything within
+delimiter syntax. Anything within
{literal}{/literal}
tags is not interpreted, but displayed as-is. If
you need template tags embedded in a {literal}
block, consider using
{ldelim}{rdelim}
to escape the individual
diff --git a/5.x/designers/language-builtin-functions/language-function-nocache/index.html b/5.x/designers/language-builtin-functions/language-function-nocache/index.html
index 7f935100..9e14f4f0 100644
--- a/5.x/designers/language-builtin-functions/language-function-nocache/index.html
+++ b/5.x/designers/language-builtin-functions/language-function-nocache/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -987,14 +987,14 @@
@@ -1339,14 +1339,14 @@
diff --git a/5.x/designers/language-builtin-functions/language-function-section/index.html b/5.x/designers/language-builtin-functions/language-function-section/index.html
index 3a2cd6c6..f6fb943e 100644
--- a/5.x/designers/language-builtin-functions/language-function-section/index.html
+++ b/5.x/designers/language-builtin-functions/language-function-section/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -987,14 +987,14 @@
@@ -1454,14 +1454,14 @@
diff --git a/5.x/designers/language-builtin-functions/language-function-setfilter/index.html b/5.x/designers/language-builtin-functions/language-function-setfilter/index.html
index 4f878e5b..fcd67527 100644
--- a/5.x/designers/language-builtin-functions/language-function-setfilter/index.html
+++ b/5.x/designers/language-builtin-functions/language-function-setfilter/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -987,14 +987,14 @@
@@ -1370,14 +1370,14 @@
diff --git a/5.x/designers/language-builtin-functions/language-function-strip/index.html b/5.x/designers/language-builtin-functions/language-function-strip/index.html
index f391cb41..a9006842 100644
--- a/5.x/designers/language-builtin-functions/language-function-strip/index.html
+++ b/5.x/designers/language-builtin-functions/language-function-strip/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -987,14 +987,14 @@
@@ -1339,14 +1339,14 @@
diff --git a/5.x/designers/language-builtin-functions/language-function-while/index.html b/5.x/designers/language-builtin-functions/language-function-while/index.html
index 5524d49f..e26b4541 100644
--- a/5.x/designers/language-builtin-functions/language-function-while/index.html
+++ b/5.x/designers/language-builtin-functions/language-function-while/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -987,14 +987,14 @@
@@ -1377,14 +1377,14 @@
diff --git a/5.x/designers/language-combining-modifiers/index.html b/5.x/designers/language-combining-modifiers/index.html
index e0de5450..b0fcdd9d 100644
--- a/5.x/designers/language-combining-modifiers/index.html
+++ b/5.x/designers/language-combining-modifiers/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -995,14 +995,14 @@
@@ -1337,14 +1337,14 @@
diff --git a/5.x/designers/language-custom-functions/index.html b/5.x/designers/language-custom-functions/index.html
index 57241612..2b8978b8 100644
--- a/5.x/designers/language-custom-functions/index.html
+++ b/5.x/designers/language-custom-functions/index.html
@@ -67,7 +67,7 @@
-
+
Skip to content
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -985,14 +985,14 @@
@@ -1329,14 +1329,14 @@
@@ -2128,7 +2128,7 @@
-Custom Functions
+Custom Tags
Smarty comes with several custom plugin functions that you can use in
the templates.
diff --git a/5.x/designers/language-custom-functions/language-function-counter/index.html b/5.x/designers/language-custom-functions/language-function-counter/index.html
index ce6d5bbd..76d61539 100644
--- a/5.x/designers/language-custom-functions/language-function-counter/index.html
+++ b/5.x/designers/language-custom-functions/language-function-counter/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -985,14 +985,14 @@
@@ -1329,14 +1329,14 @@
diff --git a/5.x/designers/language-custom-functions/language-function-cycle/index.html b/5.x/designers/language-custom-functions/language-function-cycle/index.html
index b45cc4f4..4216b92c 100644
--- a/5.x/designers/language-custom-functions/language-function-cycle/index.html
+++ b/5.x/designers/language-custom-functions/language-function-cycle/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -985,14 +985,14 @@
@@ -1329,14 +1329,14 @@
diff --git a/5.x/designers/language-custom-functions/language-function-debug/index.html b/5.x/designers/language-custom-functions/language-function-debug/index.html
index 4f5e8e43..692768a2 100644
--- a/5.x/designers/language-custom-functions/language-function-debug/index.html
+++ b/5.x/designers/language-custom-functions/language-function-debug/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -985,14 +985,14 @@
@@ -1329,14 +1329,14 @@
diff --git a/5.x/designers/language-custom-functions/language-function-eval/index.html b/5.x/designers/language-custom-functions/language-function-eval/index.html
index ed675042..b4fbc960 100644
--- a/5.x/designers/language-custom-functions/language-function-eval/index.html
+++ b/5.x/designers/language-custom-functions/language-function-eval/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -985,14 +985,14 @@
@@ -1329,14 +1329,14 @@
@@ -2227,7 +2227,7 @@ output to the template.
-
Evaluated variables are compiled on every invocation, the compiled
- versions are not saved! However, if you have caching
+ versions are not saved! However, if you have caching
enabled, the output will be cached with the rest of the template.
-
diff --git a/5.x/designers/language-custom-functions/language-function-fetch/index.html b/5.x/designers/language-custom-functions/language-function-fetch/index.html
index 60c8fefd..fc812011 100644
--- a/5.x/designers/language-custom-functions/language-function-fetch/index.html
+++ b/5.x/designers/language-custom-functions/language-function-fetch/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -985,14 +985,14 @@
@@ -1329,14 +1329,14 @@
@@ -2235,7 +2235,7 @@ trailing slash on your web page fetches where necessary.
If security is enabled, and you are fetching a file from the local
file system, {fetch}
will only allow files from within the
$secure_dir
path of the security policy. See the
-Security section for details.
+Security section for details.
-
diff --git a/5.x/designers/language-custom-functions/language-function-html-checkboxes/index.html b/5.x/designers/language-custom-functions/language-function-html-checkboxes/index.html
index f60d110b..47436c3c 100644
--- a/5.x/designers/language-custom-functions/language-function-html-checkboxes/index.html
+++ b/5.x/designers/language-custom-functions/language-function-html-checkboxes/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -985,14 +985,14 @@
@@ -1329,14 +1329,14 @@
diff --git a/5.x/designers/language-custom-functions/language-function-html-image/index.html b/5.x/designers/language-custom-functions/language-function-html-image/index.html
index 8b89396c..906f8711 100644
--- a/5.x/designers/language-custom-functions/language-function-html-image/index.html
+++ b/5.x/designers/language-custom-functions/language-function-html-image/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -985,14 +985,14 @@
@@ -1329,14 +1329,14 @@
@@ -2245,7 +2245,7 @@ automatically calculated from the image file if they are not supplied.
from. If not given, the web server's document root
$_ENV['DOCUMENT_ROOT']
is used as the base. If security is
enabled, then the image must be located in the $secure_dir
path of
- the security policy. See the Security
+ the security policy. See the Security
section for details.
-
@@ -2266,7 +2266,7 @@ automatically calculated from the image file if they are not supplied.
Note
{html_image}
requires a hit to the disk to read the image and
calculate the height and width. If you don't use template
-caching, it is generally better to avoid {html_image}
+caching, it is generally better to avoid {html_image}
and leave image tags static for optimal performance.
Examples
diff --git a/5.x/designers/language-custom-functions/language-function-html-options/index.html b/5.x/designers/language-custom-functions/language-function-html-options/index.html
index 631ca883..e3458b28 100644
--- a/5.x/designers/language-custom-functions/language-function-html-options/index.html
+++ b/5.x/designers/language-custom-functions/language-function-html-options/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -985,14 +985,14 @@
@@ -1329,14 +1329,14 @@
diff --git a/5.x/designers/language-custom-functions/language-function-html-radios/index.html b/5.x/designers/language-custom-functions/language-function-html-radios/index.html
index 07606400..4debe78f 100644
--- a/5.x/designers/language-custom-functions/language-function-html-radios/index.html
+++ b/5.x/designers/language-custom-functions/language-function-html-radios/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -985,14 +985,14 @@
@@ -1329,14 +1329,14 @@
diff --git a/5.x/designers/language-custom-functions/language-function-html-select-date/index.html b/5.x/designers/language-custom-functions/language-function-html-select-date/index.html
index f8dab0d5..3eb56254 100644
--- a/5.x/designers/language-custom-functions/language-function-html-select-date/index.html
+++ b/5.x/designers/language-custom-functions/language-function-html-select-date/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -985,14 +985,14 @@
@@ -1329,14 +1329,14 @@
diff --git a/5.x/designers/language-custom-functions/language-function-html-select-time/index.html b/5.x/designers/language-custom-functions/language-function-html-select-time/index.html
index e5ad69c6..1c72573b 100644
--- a/5.x/designers/language-custom-functions/language-function-html-select-time/index.html
+++ b/5.x/designers/language-custom-functions/language-function-html-select-time/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -985,14 +985,14 @@
@@ -1329,14 +1329,14 @@
diff --git a/5.x/designers/language-custom-functions/language-function-html-table/index.html b/5.x/designers/language-custom-functions/language-function-html-table/index.html
index a070287f..4b243933 100644
--- a/5.x/designers/language-custom-functions/language-function-html-table/index.html
+++ b/5.x/designers/language-custom-functions/language-function-html-table/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -985,14 +985,14 @@
@@ -1329,14 +1329,14 @@
diff --git a/5.x/designers/language-custom-functions/language-function-mailto/index.html b/5.x/designers/language-custom-functions/language-function-mailto/index.html
index 0a9f148d..c054260e 100644
--- a/5.x/designers/language-custom-functions/language-function-mailto/index.html
+++ b/5.x/designers/language-custom-functions/language-function-mailto/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -985,14 +985,14 @@
@@ -1329,14 +1329,14 @@
diff --git a/5.x/designers/language-custom-functions/language-function-math/index.html b/5.x/designers/language-custom-functions/language-function-math/index.html
index eb1cdaae..37499834 100644
--- a/5.x/designers/language-custom-functions/language-function-math/index.html
+++ b/5.x/designers/language-custom-functions/language-function-math/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -985,14 +985,14 @@
@@ -1329,14 +1329,14 @@
diff --git a/5.x/designers/language-custom-functions/language-function-textformat/index.html b/5.x/designers/language-custom-functions/language-function-textformat/index.html
index ae90b3eb..9a3919e8 100644
--- a/5.x/designers/language-custom-functions/language-function-textformat/index.html
+++ b/5.x/designers/language-custom-functions/language-function-textformat/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -985,14 +985,14 @@
@@ -1329,14 +1329,14 @@
@@ -2189,7 +2189,7 @@
{textformat}
-{textformat}
is a block function used to
+
{textformat}
is a block tag used to
format text. It basically cleans up spaces and special characters, and
formats paragraphs by wrapping at a boundary and indenting lines.
You can set the parameters explicitly, or use a preset style. Currently,
diff --git a/5.x/designers/language-modifiers/index.html b/5.x/designers/language-modifiers/index.html
index 45449bcc..572dff09 100644
--- a/5.x/designers/language-modifiers/index.html
+++ b/5.x/designers/language-modifiers/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -1028,14 +1028,14 @@
@@ -1370,14 +1370,14 @@
@@ -2176,7 +2176,7 @@
Variable Modifiers
Variable modifiers can be applied to
-variables, custom functions
+variables, custom tags
or strings. To apply a modifier,
specify the value followed by a |
(pipe) and the modifier name. A
modifier may accept additional parameters that affect its behavior.
@@ -2274,7 +2274,7 @@ gives 9. To get the old result use parentheses like
See also registerPlugin()
, combining
-modifiers. and extending smarty with
+modifiers. and extending smarty with
plugins
diff --git a/5.x/designers/language-modifiers/language-modifier-capitalize/index.html b/5.x/designers/language-modifiers/language-modifier-capitalize/index.html
index e58f8be9..5bcad108 100644
--- a/5.x/designers/language-modifiers/language-modifier-capitalize/index.html
+++ b/5.x/designers/language-modifiers/language-modifier-capitalize/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -1042,14 +1042,14 @@
@@ -1384,14 +1384,14 @@
diff --git a/5.x/designers/language-modifiers/language-modifier-cat/index.html b/5.x/designers/language-modifiers/language-modifier-cat/index.html
index 8a005fa7..f157440f 100644
--- a/5.x/designers/language-modifiers/language-modifier-cat/index.html
+++ b/5.x/designers/language-modifiers/language-modifier-cat/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -1042,14 +1042,14 @@
@@ -1384,14 +1384,14 @@
diff --git a/5.x/designers/language-modifiers/language-modifier-count-characters/index.html b/5.x/designers/language-modifiers/language-modifier-count-characters/index.html
index 812c86aa..7fcf1ec0 100644
--- a/5.x/designers/language-modifiers/language-modifier-count-characters/index.html
+++ b/5.x/designers/language-modifiers/language-modifier-count-characters/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -1042,14 +1042,14 @@
@@ -1384,14 +1384,14 @@
diff --git a/5.x/designers/language-modifiers/language-modifier-count-paragraphs/index.html b/5.x/designers/language-modifiers/language-modifier-count-paragraphs/index.html
index 8b4c3f6a..fb00e217 100644
--- a/5.x/designers/language-modifiers/language-modifier-count-paragraphs/index.html
+++ b/5.x/designers/language-modifiers/language-modifier-count-paragraphs/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -1035,14 +1035,14 @@
@@ -1377,14 +1377,14 @@
diff --git a/5.x/designers/language-modifiers/language-modifier-count-sentences/index.html b/5.x/designers/language-modifiers/language-modifier-count-sentences/index.html
index 469fdc40..bab763dc 100644
--- a/5.x/designers/language-modifiers/language-modifier-count-sentences/index.html
+++ b/5.x/designers/language-modifiers/language-modifier-count-sentences/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -1035,14 +1035,14 @@
@@ -1377,14 +1377,14 @@
diff --git a/5.x/designers/language-modifiers/language-modifier-count-words/index.html b/5.x/designers/language-modifiers/language-modifier-count-words/index.html
index 6e8fd089..7adf8f4d 100644
--- a/5.x/designers/language-modifiers/language-modifier-count-words/index.html
+++ b/5.x/designers/language-modifiers/language-modifier-count-words/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -1035,14 +1035,14 @@
@@ -1377,14 +1377,14 @@
diff --git a/5.x/designers/language-modifiers/language-modifier-date-format/index.html b/5.x/designers/language-modifiers/language-modifier-date-format/index.html
index 32e09c78..14051444 100644
--- a/5.x/designers/language-modifiers/language-modifier-date-format/index.html
+++ b/5.x/designers/language-modifiers/language-modifier-date-format/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -1049,14 +1049,14 @@
@@ -1391,14 +1391,14 @@
diff --git a/5.x/designers/language-modifiers/language-modifier-default/index.html b/5.x/designers/language-modifiers/language-modifier-default/index.html
index b854a60f..56244c82 100644
--- a/5.x/designers/language-modifiers/language-modifier-default/index.html
+++ b/5.x/designers/language-modifiers/language-modifier-default/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -1042,14 +1042,14 @@
@@ -1384,14 +1384,14 @@
diff --git a/5.x/designers/language-modifiers/language-modifier-escape/index.html b/5.x/designers/language-modifiers/language-modifier-escape/index.html
index f5c5ef42..6ec5642a 100644
--- a/5.x/designers/language-modifiers/language-modifier-escape/index.html
+++ b/5.x/designers/language-modifiers/language-modifier-escape/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -1042,14 +1042,14 @@
@@ -1384,14 +1384,14 @@
diff --git a/5.x/designers/language-modifiers/language-modifier-from-charset/index.html b/5.x/designers/language-modifiers/language-modifier-from-charset/index.html
index 3ab5004c..fb76a791 100644
--- a/5.x/designers/language-modifiers/language-modifier-from-charset/index.html
+++ b/5.x/designers/language-modifiers/language-modifier-from-charset/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -1028,14 +1028,14 @@
@@ -1370,14 +1370,14 @@
diff --git a/5.x/designers/language-modifiers/language-modifier-indent/index.html b/5.x/designers/language-modifiers/language-modifier-indent/index.html
index d2627c06..15d4a2c8 100644
--- a/5.x/designers/language-modifiers/language-modifier-indent/index.html
+++ b/5.x/designers/language-modifiers/language-modifier-indent/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -1042,14 +1042,14 @@
@@ -1384,14 +1384,14 @@
diff --git a/5.x/designers/language-modifiers/language-modifier-lower/index.html b/5.x/designers/language-modifiers/language-modifier-lower/index.html
index b4990510..1b64a9d3 100644
--- a/5.x/designers/language-modifiers/language-modifier-lower/index.html
+++ b/5.x/designers/language-modifiers/language-modifier-lower/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -1035,14 +1035,14 @@
@@ -1377,14 +1377,14 @@
diff --git a/5.x/designers/language-modifiers/language-modifier-nl2br/index.html b/5.x/designers/language-modifiers/language-modifier-nl2br/index.html
index cb76ab26..008eaa41 100644
--- a/5.x/designers/language-modifiers/language-modifier-nl2br/index.html
+++ b/5.x/designers/language-modifiers/language-modifier-nl2br/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -1035,14 +1035,14 @@
@@ -1377,14 +1377,14 @@
diff --git a/5.x/designers/language-modifiers/language-modifier-regex-replace/index.html b/5.x/designers/language-modifiers/language-modifier-regex-replace/index.html
index 42a3436a..59200b13 100644
--- a/5.x/designers/language-modifiers/language-modifier-regex-replace/index.html
+++ b/5.x/designers/language-modifiers/language-modifier-regex-replace/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -1042,14 +1042,14 @@
@@ -1384,14 +1384,14 @@
diff --git a/5.x/designers/language-modifiers/language-modifier-replace/index.html b/5.x/designers/language-modifiers/language-modifier-replace/index.html
index 99bc174a..ec4e0958 100644
--- a/5.x/designers/language-modifiers/language-modifier-replace/index.html
+++ b/5.x/designers/language-modifiers/language-modifier-replace/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -1042,14 +1042,14 @@
@@ -1384,14 +1384,14 @@
diff --git a/5.x/designers/language-modifiers/language-modifier-spacify/index.html b/5.x/designers/language-modifiers/language-modifier-spacify/index.html
index 3bb7e0e6..9d3e4cfc 100644
--- a/5.x/designers/language-modifiers/language-modifier-spacify/index.html
+++ b/5.x/designers/language-modifiers/language-modifier-spacify/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -1042,14 +1042,14 @@
@@ -1384,14 +1384,14 @@
diff --git a/5.x/designers/language-modifiers/language-modifier-string-format/index.html b/5.x/designers/language-modifiers/language-modifier-string-format/index.html
index f5a7df11..8546e2b4 100644
--- a/5.x/designers/language-modifiers/language-modifier-string-format/index.html
+++ b/5.x/designers/language-modifiers/language-modifier-string-format/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -1042,14 +1042,14 @@
@@ -1384,14 +1384,14 @@
diff --git a/5.x/designers/language-modifiers/language-modifier-strip-tags/index.html b/5.x/designers/language-modifiers/language-modifier-strip-tags/index.html
index 492f2e5e..c91803ab 100644
--- a/5.x/designers/language-modifiers/language-modifier-strip-tags/index.html
+++ b/5.x/designers/language-modifiers/language-modifier-strip-tags/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -1042,14 +1042,14 @@
@@ -1384,14 +1384,14 @@
diff --git a/5.x/designers/language-modifiers/language-modifier-strip/index.html b/5.x/designers/language-modifiers/language-modifier-strip/index.html
index 671122aa..21818da9 100644
--- a/5.x/designers/language-modifiers/language-modifier-strip/index.html
+++ b/5.x/designers/language-modifiers/language-modifier-strip/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -1035,14 +1035,14 @@
@@ -1377,14 +1377,14 @@
diff --git a/5.x/designers/language-modifiers/language-modifier-to-charset/index.html b/5.x/designers/language-modifiers/language-modifier-to-charset/index.html
index 5855760f..20c89c16 100644
--- a/5.x/designers/language-modifiers/language-modifier-to-charset/index.html
+++ b/5.x/designers/language-modifiers/language-modifier-to-charset/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -1028,14 +1028,14 @@
@@ -1370,14 +1370,14 @@
diff --git a/5.x/designers/language-modifiers/language-modifier-truncate/index.html b/5.x/designers/language-modifiers/language-modifier-truncate/index.html
index a5ead4f7..53bc7502 100644
--- a/5.x/designers/language-modifiers/language-modifier-truncate/index.html
+++ b/5.x/designers/language-modifiers/language-modifier-truncate/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -1042,14 +1042,14 @@
@@ -1384,14 +1384,14 @@
diff --git a/5.x/designers/language-modifiers/language-modifier-unescape/index.html b/5.x/designers/language-modifiers/language-modifier-unescape/index.html
index 3027d257..4f956309 100644
--- a/5.x/designers/language-modifiers/language-modifier-unescape/index.html
+++ b/5.x/designers/language-modifiers/language-modifier-unescape/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -1042,14 +1042,14 @@
@@ -1384,14 +1384,14 @@
diff --git a/5.x/designers/language-modifiers/language-modifier-upper/index.html b/5.x/designers/language-modifiers/language-modifier-upper/index.html
index c517e2dd..1e9a21b9 100644
--- a/5.x/designers/language-modifiers/language-modifier-upper/index.html
+++ b/5.x/designers/language-modifiers/language-modifier-upper/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -1035,14 +1035,14 @@
@@ -1377,14 +1377,14 @@
diff --git a/5.x/designers/language-modifiers/language-modifier-wordwrap/index.html b/5.x/designers/language-modifiers/language-modifier-wordwrap/index.html
index 26b17b17..8c0f8512 100644
--- a/5.x/designers/language-modifiers/language-modifier-wordwrap/index.html
+++ b/5.x/designers/language-modifiers/language-modifier-wordwrap/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -1042,14 +1042,14 @@
@@ -1384,14 +1384,14 @@
diff --git a/5.x/designers/language-variables/index.html b/5.x/designers/language-variables/index.html
index 5e5a8b67..6c1afa6f 100644
--- a/5.x/designers/language-variables/index.html
+++ b/5.x/designers/language-variables/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -1028,14 +1028,14 @@
@@ -1370,14 +1370,14 @@
@@ -2183,11 +2183,11 @@ variable depends on what symbol it is prefixed or enclosed within.
- {$smarty} reserved variable
Variables in Smarty can be either displayed directly or used as
-arguments for functions,
+arguments for tags,
attributes and
modifiers, inside conditional expressions, etc.
To print a variable, simply enclose it in the
-delimiters so that it is the only thing
+delimiters so that it is the only thing
contained between them.
{$Name}
diff --git a/5.x/designers/language-variables/language-assigned-variables/index.html b/5.x/designers/language-variables/language-assigned-variables/index.html
index 8f153136..75f6f5a4 100644
--- a/5.x/designers/language-variables/language-assigned-variables/index.html
+++ b/5.x/designers/language-variables/language-assigned-variables/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -1049,14 +1049,14 @@
Objects
-Properties of objects assigned from PHP
+
Properties of objects assigned from PHP
can be referenced by specifying the property name after the ->
symbol.
name: {$person->name}<br />
email: {$person->email}<br />
diff --git a/5.x/designers/language-variables/language-config-variables/index.html b/5.x/designers/language-variables/language-config-variables/index.html
index 650fd66b..1458cb25 100644
--- a/5.x/designers/language-variables/language-config-variables/index.html
+++ b/5.x/designers/language-variables/language-config-variables/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -1028,14 +1028,14 @@
@@ -1370,14 +1370,14 @@
diff --git a/5.x/designers/language-variables/language-variable-scopes/index.html b/5.x/designers/language-variables/language-variable-scopes/index.html
index e5b894e1..1811de95 100644
--- a/5.x/designers/language-variables/language-variable-scopes/index.html
+++ b/5.x/designers/language-variables/language-variable-scopes/index.html
@@ -410,8 +410,8 @@
-
-
- Functions
+
+ Tags
@@ -997,14 +997,14 @@
@@ -1339,14 +1339,14 @@