Page 1 of 1

how to call UDT in plugins? [solved]

Posted: Fri Feb 09, 2007 8:52 am
by pumuklee
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

Re: how to call UDT in plugins?

Posted: Fri Feb 09, 2007 1:09 pm
by pumuklee
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