PDA

View Full Version : vB Variables On Other Pages


citricguy
07-14-2008, 12:15 AM
I have been searching around and have yet to find a definitive answer to the "How can I use vB variables on non-vb pages."

Here's what I'm trying to do.

I have a page (actually it's a wordpress blog) that I am trying to integrate with vB. Nothing fancy, I would just like to be able to pull the logged in user's username into the document, and I'd love to be able to use a few group based conditional statements throughout the page.

Do I just need to require(); something so I can start pulling variables?

Please, point me in the right direction.

RLShare
07-14-2008, 01:17 AM
When you include/require 'globals.php' then you can access the userinfo through the array $vbulletin->userinfo

Such as...
$vbulletin->userinfo['userid']
$vbulletin->userinfo['username']
$vbulletin->userinfo['usergroupid']

...etc

citricguy
07-14-2008, 01:21 AM
Thank you :) That's exactly what I was looking for.