MyBB Community Forums
Replacing template - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: Extensions (https://community.mybb.com/forum-201.html)
+--- Forum: Plugins (https://community.mybb.com/forum-73.html)
+---- Forum: Plugin Development (https://community.mybb.com/forum-68.html)
+---- Thread: Replacing template (/thread-124523.html)



Replacing template - shaka - 2012-08-16

Hey,

I have a problem. How am i replacing template in newreply.php? My plugin checks ID thread. Now i want replace template. I was looking for hook.
...
$plugins->add_hook("newreply_start", "zmiana_szablonu");

function zmiana_szablonu()
{
	global $mybb, $thread, $templates,;

	if($thread['fid']==80){
//change temp.
	}
}
...

I see in newreply.php:
	eval("\$newreply = \"".$templates->get("newreply")."\";");
	output_page($newreply);
There is a hook?

Who can help me?