Helpful Information
 
 
Category: vBulletin 4 Discussion
Showing variable from template:headinclude from hook:global_start

How can I show up a variable in template headinclude from the plugin global_start? I do not have created any custom template like my_custom_template shown in the code. Please advice me how can I put the variable $car in headinclude. Thanks!

plugin global start
$car ='Porsche';
$templater = vB_Template::create('my_custom_template');
$templater->register('car', $car);
$car = $templater->render();

template: headinclude
(...)
{vb:raw car}
(...)


Why doesn't it work? Thanks!

Try this in the plugin:

$car = 'Porsche';

vB_Template::preRegister('headinclude', array('car' => $car));

That works great!!! Thank you very much!

You're welcome. :)










privacy (GDPR)