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:
unregister_function() — des-registrar dinámicamente una función de plugin del template
void unregister_function(string name);
Pase en el template el nombre de la función.
Example 13.27. unregister_function()
<?php // nosotros no queremos que el diseñador del template tenga acceso a // nuestros archivos de sistema $smarty->unregister_function("fetch"); ?>
Ver también register_function() .