Perfect, thank you so much for posting this.
I do have a general question. For my eFiction bridge mod I have been exporting the templates into variables that I can then use in the external template system. I figured out how to make this work by using the following code.
Code:
$templater = vB_Template::create('header');
$header = $templater->render();
$templater = vB_Template::create('footer');
$footer = $templater->render();
$templater = vB_Template::create('headinclude');
$headinclude = $templater->render();
$templater = vB_Template::create('navbar');
$navbar = $templater->render();
This ends up being a lot of repetitive code. Is there a better way to get the templates into the variables?