Log in

View Full Version : access forumid in a php file


mlulm
04-17-2012, 10:48 PM
Hi
What do I need to do to access the forumids in a separate php file?
I'm currently able to get info from the php file into a template,
but would like to fine tune it more based on which forum its is in.

I used to use this in templates.
<if condition="$forumid == 41">
Thanks

kh99
04-17-2012, 11:22 PM
Is this an external file you're including via a plugin? Try:

global $foruminfo;
$forumid = $foruminfo['forumid'];

if ($forumid == 42)
{
...

mlulm
04-18-2012, 11:49 AM
Hi
I tried this below, after trying it in the full file, but got a blank result in both.
In case it's a factor I'm using as the hook gobal_bootstrap_init_start

<?php
global $foruminfo;
$forumid = $foruminfo['forumid'];
echo $forumid;
?>

thanks

kh99
04-18-2012, 12:01 PM
Yeah I think it is the hook. Try global_bootstrap_complete instead.

mlulm
04-18-2012, 01:10 PM
Wow, that worked.
Thanks for your help