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 — dynamically unregister template function plugin
void unregister_function(string name);
Pass in the template function name
.
Example 13.27. unregister_function
<?php // we don't want template designers to have access to system files $smarty->unregister_function('fetch'); ?>
See also
register_function()
.