MyBB Community Forums

Full Version: How To Include Mybb Template?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey,

I have developed A software for Mybb it's not a complete plugin but more like a software developed for Mybb.

What's the simplest way to include the mybb template system with the software so it links more with the forums.

Thanks!

I did it once before but can't remember how it was done.
The easiest way is just including global.php, making sure you do define("IN_MYBB", 1); first. This also creates the object $templates which has the method get.

<?php
define("IN_MYBB", 1);
require_once "global.php";
eval("\$variable = \"".$templates->get("template_name")."\";");
output_page($variable);
?>