PDA

View Full Version : Interrogate the URL


v0xb0x
07-02-2008, 08:05 PM
I have a plug-in that I am hooking from global_start.

I want to call the current URL into the plug-in so that I can parse it and then run an if/then or case on it. I then want to consume the output of the plug-in in the 'header' template. I have a custom nav I am trying to populate based on the URL.

Can anyone tell me if vbulletin has a variable available that possesses the current URL in it that we can expose in global_start for these purposes?

Appreciate any help in advance.

Thanks.

--------------- Added 1215059807 at 1215059807 ---------------

UPDATED

I'm a little closer to this.

Inside of /includes/class_core.php I found this class:

vB_Registry

The api documentation (http://members.vbulletin.com/api/vBulletin/vB_Registry.html#$script) explains that this class exposes a variable called $script.

This string is "The URL of the current page, without anything after the '?'" which is exactly what I'm after.

Now, how do I get access to that variable ($script) in a plug-in that I am hooking from global_start.

Any help is greatly appreciated.

Thank You!

Dismounted
07-03-2008, 06:40 AM
Why don't use PHP's pre-defined variables - such as the $_SERVER array?

necris
07-03-2008, 08:34 AM
Practical example :)


$counter_aux=preg_match ( '/subdomain\.domainame\.com/' , $_SERVER['HTTP_HOST']);
if($counter_aux<>0){
[whatever you want to do]
}

Dismounted
07-03-2008, 10:20 AM
Make sure case is not "counted".
if (preg_match('/^sub\.url\.com/i', $_SERVER['HTTP_HOST']))
{
echo 'Match!';
}