wonderfulwat
05-07-2011, 01:38 AM
I want to place {vb:raw poll} into a custom template, in this case 'postbit1'
I created a plugin:
Product: vBulletin
Hook Location: postbit_display_complete
Title: postbit1 poll
Execution Order: 5
Plugin PHP Code: //ob_start();
vB_Template::preRegister('postbit1', array('poll' => $poll));
//ob_end_clean();
Then placed {vb:raw poll} into the postbit1 template, but it didn't render.
I know i've almost got it, because when I do this
//ob_start();
$artsculturehome = 'This Is A Test';
vB_Template::preRegister('postbit1', array('artsculturehome' => $artsculturehome));
//ob_end_clean();
and put {vb:raw artsculturehome}, it outputs that phrase correctly.
I think the problem is just that poll is already a declared variable.
Can you help with the correct syntax?
I created a plugin:
Product: vBulletin
Hook Location: postbit_display_complete
Title: postbit1 poll
Execution Order: 5
Plugin PHP Code: //ob_start();
vB_Template::preRegister('postbit1', array('poll' => $poll));
//ob_end_clean();
Then placed {vb:raw poll} into the postbit1 template, but it didn't render.
I know i've almost got it, because when I do this
//ob_start();
$artsculturehome = 'This Is A Test';
vB_Template::preRegister('postbit1', array('artsculturehome' => $artsculturehome));
//ob_end_clean();
and put {vb:raw artsculturehome}, it outputs that phrase correctly.
I think the problem is just that poll is already a declared variable.
Can you help with the correct syntax?