
Comparing changes: https://github.com/smarty-php/smarty/compare/v4.3.1...v4.4.1 It is noticeable that Smarty 4.3.1 does not officially support PHP 8.3. Is only supported with 4.4.0. Remark: During tests with Smarty 4.5.1, it was noticed that the following warning occurs: Deprecated: Using the unregistered function "function_exists" in a template is deprecated and will be removed in a future version. Use Smarty::registerPlugin to explicitly register a custom modifier. As of Smarty 5.X.X, templates must be revised again. The Smarty release 5.0.2 is already officially available. However, integration into FlatPress is not entirely trivial.
46 lines
1.4 KiB
Markdown
46 lines
1.4 KiB
Markdown
# {counter}
|
|
|
|
`{counter}` is used to print out a count. `{counter}` will remember the
|
|
count on each iteration. You can adjust the number, the interval and the
|
|
direction of the count, as well as determine whether to print the
|
|
value. You can run multiple counters concurrently by supplying a unique
|
|
name for each one. If you do not supply a name, the name "default" will
|
|
be used.
|
|
|
|
## Attributes
|
|
|
|
| Attribute Name | Required | Description |
|
|
|----------------|----------|-----------------------------------------------------------|
|
|
| name | No | The name of the counter |
|
|
| start | No | The initial number to start counting from (defaults to 1) |
|
|
| skip | No | The interval to count by (defaults to 1) |
|
|
| direction | No | The direction to count (up/down) (defaults to 'up') |
|
|
| print | No | Whether or not to print the value (defaults to true) |
|
|
| assign | No | the template variable the output will be assigned to |
|
|
|
|
If you supply the `assign` attribute, the output of the `{counter}`
|
|
function will be assigned to this template variable instead of being
|
|
output to the template.
|
|
|
|
## Examples
|
|
|
|
```smarty
|
|
|
|
{* initialize the count *}
|
|
{counter start=0 skip=2}<br />
|
|
{counter}<br />
|
|
{counter}<br />
|
|
{counter}<br />
|
|
|
|
```
|
|
|
|
this will output:
|
|
|
|
```html
|
|
0<br />
|
|
2<br />
|
|
4<br />
|
|
6<br />
|
|
```
|
|
|