aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/smarty/smarty/docs/programmers/api-variables/variable-autoload-filters.md
blob: 8a300b06538b98ff7b23b5d891dbed9152a14016 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
\$autoload\_filters {#variable.autoload.filters}
===================

If there are some filters that you wish to load on every template
invocation, you can specify them using this variable and Smarty will
automatically load them for you. The variable is an associative array
where keys are filter types and values are arrays of the filter names.
For example:

::: {.informalexample}

    <?php
    $smarty->autoload_filters = array('pre' => array('trim', 'stamp'),
                                      'output' => array('convert'));
    ?>

            
:::

See also [`registerFilter()`](#api.register.filter) and
[`loadFilter()`](#api.load.filter)