PDA

View Full Version : How to place {vb:raw poll} in a different template?


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?

Lynne
05-07-2011, 03:44 AM
Preregistering a variable only works if you have actually defined the variable. Is $poll a variable that is actually defined where the hook is placed?

wonderfulwat
05-07-2011, 04:40 AM
Nope, how exactly would I do that? I want $poll to equal the generic vBulletin poll, the same way it's currently being called in the showthread template. So it would probably look something like this, but I'm not sure what to put in the 'X'

//ob_start();

$poll = 'X'

vB_Template::preRegister('postbit1', array('poll' => $poll));

//ob_end_clean();


To give you an idea what I'm trying to do, here's a link to a thread on my site with a poll: http://www.wonderfulwaterloo.com/showthread.php?t=219&styleid=56

I want to make the poll part of that first post, on the right hand side, where it currently says 'testing this'. You can see a concept idea on the attached image, although I realize it still has styling work to do.

Yellow Slider
05-07-2011, 10:31 AM
global $poll;
vB_Template::preRegister('postbit1', array('poll' => $poll));

wonderfulwat
05-07-2011, 07:16 PM
Thanks!