Quote:
Originally Posted by kh99
That might work. You might also be able to create another plugin using hook online_location_preprocess and change $filename (if you can figure out how to know when you're on your homepage). For example, if you set a THIS_SCRIPT value in your home page (maybe with value 'homepage', then use this code on online_location_preprocess:
Code:
if (THIS_SCRIPT == 'homepage')
{
$filename = 'homepage';
}
Then in the online_location_process plugin use case 'homepage'.
I'm not sure - I'd probably need to set up a test and then print out the value to know for sure. But if the above works, then it won't matter.
|
Alright. Renaming it to home.php works. I still get an 'Unknown Location' error.
My current online_location_process:
Code:
switch ($filename)
{
case '../home.php':
$userinfo['activity'] = 'homepage';
break;
}
My current online_location_unknown:
Code:
switch ($userinfo['activity'])
{
case 'homepage':
$userinfo['where'] = '<a href="test.php?'.$vbulletin->session->vars[sessionurl].'">My Page</a>';
$userinfo['action'] = "Viewing My Page";
break;
}
It still seems to be an issue with the home.php's path, though :s
Also, for your snippet for online_location_preprocess, would I have to change the case in my online_location_process plugin to be 'homepage' instead of the filepath?