I have plugin "left_panel", hook location is global_start:
PHP Code:
ob_start();
include('MySource/links.php');
$templatevalues['left_panel'] = ob_get_contents();
ob_end_clean();
vB_Template::preRegister('ss_leftcolumn_contents', $templatevalues);
In template "ss_leftcolumn_contents" I have some html code and call {vb:raw left_panel}. Html code show ok, but content of left_panel is not visible. Why?