What is Smarty?
Why use it?
Use Cases and Work Flow
Syntax Comparison
Template Inheritance
Best Practices
Crash Course
You may use the Smarty logo according to the trademark notice.
For sponsorship, advertising, news or other inquiries, contact us at:
load_filter() — Carga un filtro de plugin
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.