I'd like to write several EZComments templates and have them used in specific modules. I think it was possible to do this by creating templates with the same name as the module earlier (the early versions at lottasophie.sf.net). You could create /modules/EZComments/pntemplates/myModule.htm and it would be used inside myModule. This is not the case any more, right?
I think it's a good idea and maybe something like the code below could be added to EZComments_user_view?
Code
if($pnRender->template_exists(pnVarPrepForOS(pnModGetName() . '/ezcomments_user_view.htm'))){
$template = pnModGetName() . '/ezcomments_user_view.htm';
}
$template = pnModGetName() . '/ezcomments_user_view.htm';
}
Let me know if there's already an easy way to do this sort of thing without specifying the template every time. I'm aware of the "template" param for the function, but I'd like to avoid using it.
