Hello,
Are there any kind of developer documentations available? I have the following:
PHP Code:
chdir('/home/db7aston/www/forums');
require_once('./global.php');
// IF USER IS LOGGED IN
if ($vbulletin->userinfo['username'])
{
// CODE TO EXECUTE IF USER IS LOGGED IN
echo 'logged in';
}
else
{
// CODE IF USER IS NOT LOGGED IN
echo 'not logged in';
}
It would be very helpful if I could know all the values of the userinfo array. Things like their userid, if they are logged in, etc.