I have used global_start hook location.
This seems to add the data to footer with the above hook.
PHP Code:
$test = "Some text here";
vB_Template::preRegister('footer',array('test' => $test));
But I need to add/render the template.
.
--------------- Added [DATE]1259711598[/DATE] at [TIME]1259711598[/TIME] ---------------
I have searched "class_bootstrap.php" and found that "parse_templates" was called just before header and footer templates got rendered.
"parse_templates" hook seems to work.
.