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

Name

load_filter() — Carga un filtro de plugin

Descripción

void load_filter(string type,
                 string name);

El primer argumento especifíca el tipo de filtro a cargar y puede ser uno de los siguientes: 'pre', 'post', o 'output'. El segundo argumento especifíca el nombre del filtro del plugin, por ejemplo, 'trim'.

Example 13.21. loading filter plugins


<?php
$smarty->load_filter('pre', 'trim');        // load prefilter named 'trim'
$smarty->load_filter('pre', 'datefooter');  // load another prefilter named 'datefooter'
$smarty->load_filter('output', 'compress'); // load output filter named 'compress'
?>

   

Ver también register_prefilter(), register_postfilter(), register_outputfilter(), $autoload_filters y Advanced features.