1
First of all: I used the search to look for an answer to this question and it came up with nothing. If this question has already been answered: Sorry!
I made a custom module that needs to be very flexible in what templates it can display. This cause these templates need to be able to be added and removed by someone that knows only HTML without having to update the modinfo.php file and do a refresh on the module every time.
Is there a way to display a template by file instead of by database entry using $xoopsTpl? For example:
$xoopsTpl->xoops_setCaching(0);
$xoopsTpl->display('file:'.$selected_template);
Thanks in advance.