*/ class Smarty_Resource_LdapSaisie extends Smarty_Resource_Custom { // prepared fetch() statement protected $fetch; // prepared fetchTimestamp() statement protected $mtime; /** * Fetch a template and its modification time from database * * @param string $name template name * @param string $source template source * @param integer $mtime template modification timestamp (epoch) * @return void */ protected function fetch($name, &$source, &$mtime) { $source = LStemplate :: getTemplateSource($name); $mtime = LStemplate :: getTemplateTimestamp($name); } /** * Fetch a template's modification time from database * * @note implementing this method is optional. Only implement it if modification times can be accessed faster than loading the comple template source. * @param string $name template name * @return integer timestamp (epoch) the template was modified */ protected function fetchTimestamp($name) { return LStemplate :: getTemplateTimestamp($name); } } // Register 'ls' template ressource LStemplate :: $_smarty -> registerResource('ls', new Smarty_Resource_LdapSaisie()); /** * Register a template function * * @param[in] string $name The function name in template * @param[in] string $function_name The function name in PHP * * @retval void */ function LStemplate_register_function($name,$function_name) { LStemplate :: $_smarty -> registerPlugin("function",$name,$function_name); }