Log in

View Full Version : Which Hook to access forumid / userid before display?


smjChris
01-30-2008, 07:40 AM
Hello,

I have a script that places images (banners) where I choose, but for logging purposes I need to access the vBulletin $foruminfo['forumid'] & $bbuserinfo['userid'] variables.

I have placed the include file (through plug-in system) in global_start, and the images are displayed, but are missing the forumid / userid elements.

Which hook should I place my include into so I can access those variables and still be able to insert my output within the templates for display?

sample code of what I'm trying to do...


//set userid = 0 for default/guest
$x_userID=0;
if (isset($bbuserinfo['userid'])){
$x_userID = $bbuserinfo['userid'];
}

//build url for anchor
$myUrl = "ad_Hit.php?";
$myUrl .= "adid=".$adArray['adid']."&uid=".$x_userID;

$myAnchor = "<a href='".$myUrl."'><img src='".$imgPath."' border='0' hspace='3' vspace='3' alt='".$adArray['company']."'></a>";


constructed querystring is parsed in additional script and I need to log the userid if user is a registered user, not default of 0/guest


Thank you.

MarkPW
01-30-2008, 02:57 PM
I have placed the include file (through plug-in system) in global_start, and the images are displayed, but are missing the forumid / userid elements.

That's because they aren't available in global_start. Use global_setup_complete or even parse_templates ;)

Opserty
01-30-2008, 03:51 PM
$vbulletin->userinfo['userid'];
$forumid = intval($_GET['f']);

smjChris
01-30-2008, 04:19 PM
I actually had tried it under both of those hooks and it did not work.

I think my major problem was an error in another function where I did not reference the global $x_userID variable where I was trying to store the userid.

I also used the $vbulletin->userinfo['userid'] pointer instead, then put it back into parse_templates hook and it works perfectly.

Thank you both. :up: