hi
what is the possibility to call a user defined tag into a plugin?
something like this
function smarty_cms_function_lebenslauf($params, &$smarty)
{
call the udt_language();
}
thanks
how to call UDT in plugins? [solved]
how to call UDT in plugins? [solved]
Last edited by pumuklee on Fri Feb 09, 2007 1:09 pm, edited 1 time in total.
Re: how to call UDT in plugins?
my solution:
i use a plugin
and i didnt include an UDT in my plugin
i put the udt function into a php file which i copy into the plugins folder
and i include it in my plugin
require_once('my_func_file.php');
in this way it works
i hope it is help for someone
thats all folks
i use a plugin
and i didnt include an UDT in my plugin
i put the udt function into a php file which i copy into the plugins folder
and i include it in my plugin
require_once('my_func_file.php');
in this way it works
i hope it is help for someone
thats all folks