Yes I can:
The page that has to have a name is:
http://www.nucia.nl/forum/donatie.php
Hook Location : online_location_preprocess
My Custom Location (Part1)
PHP Code:
if ($filename == 'donatie.php')
{
$userinfo['activity'] = 'donatie';
}
Hook Location : online_location_unknown
My Custom Location (Part2)
PHP Code:
if ($userinfo['activity'] == 'donatie')
{
$userinfo['action'] = 'Viewing Test Page'; // you might wanna use a $vbphrase here...
$userinfo['where'] = '<a href="./donatie.php?' . $vbulletin->session->vars['sessionurl'] . '">Donate</a>'; // you might wanna use a $vbphrase here...
$handled = true;
}