register_resource()

register_resource() -- dynamically register resources

Description

void register_resource ( string name, array resource_funcs)

Use this to dynamically register a resource plugin with Smarty. Pass in the name of the resource and the array of PHP functions implementing it. See template resources for more information on how to setup a function for fetching templates.

Technical Note: A resource name must be at least two characters in length. One character resource names will be ignored and used as part of the file path, such as $smarty->display('c:/path/to/index.tpl');

Example 13-1. register_resource()

<?php
$smarty
->register_resource('db', array(
                                
'db_get_template',
                                
'db_get_timestamp',
                                
'db_get_secure',
                                
'db_get_trusted')
                                );
?>

See also unregister_resource() and the template resources section.