Smarty Icon

You may use the Smarty logo according to the trademark notice.

Smarty Template Engine Smarty Template Engine

For sponsorship, advertising, news or other inquiries, contact us at:

Sites Using Smarty

Advertisement

$autoload_filters

Si existe algun filtro que usted desea cargar en cada llamada de template, usted puede especificar cual variable usar y el Smarty ira automáticamente a cargarlos para usted. La variable es un arreglo asociativo donde las llaves son tipos de filtro y los valores son arreglos de nombres de filtros. Por ejemplo:


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

        

Ver también register_outputfilter(), register_prefilter(), register_postfilter() y load_filter()