Quote:
Originally Posted by winstone
Thanks a lot Shadab, it works the way you coded
however there is one little problem, if I register a variable in the code which is used in 'sidebar_1' template, I can't get it to show in the output using {vb:raw VariableInMySideBar} method
|
Your code was registering the variable with the main (TEST) template, instead of the sidebar template.
Try this:
PHP Code:
##The variable to be used in 'my_sidebar_1' template
$ExVariable = 'SomeAutoGeneratedContent';
$mainTemplate = vB_Template::create('TEST');
$sidebar = vB_Template::create('sidebar_1');
$mainTemplate->register_page_templates();
$mainTemplate->register('navbar', $navbar);
$sidebar->register('VariableInMySideBar', $ExVariable);
$mainTemplate->register('my_sidebar_1', $sidebar->render());
print_output($mainTemplate->render());