Hi. I am having a problem, i registered two variables which are in the vbtrade_main template, and i want it to see it only in the php page vbtrade.php, but i see it in all pages! The forum also dissapears.
This is the code i put in the
Hook Location with global_bootstrap_init_start
Code:
ob_start();
require_once('vbtrade.php');
$stocktable = ob_get_contents();
ob_end_clean();
require_once('vbtrade.php');
$preview = ob_get_contents();
ob_end_clean();
vB_Template::preRegister('vbtrade_main',array('stocktable' => $stocktable));
vB_Template::preRegister('vbtrade_main',array('preview' => $preview));
What i am doing wrong?
Thanks for your help.