Log in

View Full Version : What variable in the code is the path to the forum and home page?


StephenKay
05-20-2008, 11:16 PM
Trying to write a plug-in...

What variables can I access to get:
a) the path to the forum (i.e. http://www.mydomain.com/forum)
b) the home page path (i.e. http://www.mydomain.com)

In vB 2.3, these used to be the global variables $bburl and $homeurl. This no longer appears to be the case.

Thanks!

veenuisthebest
05-20-2008, 11:28 PM
a) $vboptions[bburl]
b) $vboptions[homeurl]

check out the variables list in my signature !!

StephenKay
05-21-2008, 12:31 AM
Hey, thanks! - excellent resources.

However, I'm a bit new to this, so as a test I put this into a plug-in that is on the "global_setup_complete" hook:

echo "<font color=#FFFFFF>";
echo "bburl " . $vboptions[bburl] . "</br>";
echo "homeurl " . $vboptions[homeurl] . "</br>";
echo "</font>";

...and all that it prints at the top of my page is:

bburl
homeurl

...so the variables are not there (or perhaps not initialized yet?)

Basically, I want to initialize something one time that will then be used by other plug-ins.

Dismounted
05-21-2008, 07:11 AM
Use the $vbulletin->options array. $vboptions is for templates only.

StephenKay
05-21-2008, 06:49 PM
Thanks - got that part working now.

$vbulletin->options['bburl']
$vbulletin->options['homeurl']