Log in

View Full Version : Invisible mode - where is it stored in the database?


ColinP
09-06-2007, 10:57 AM
I'm currently developing a plugin for MonkeyCMS (http://www.monkeycms.com) which allows integration with vBulletin. I want to grab the current active users from a vBulletin installation and while this is 90% working, I'm having trouble working out where the 'Invisible Mode' setting against each user is stored in the database.

Does anyone know where I need to grab this from?

Paul M
09-06-2007, 11:52 AM
It's stored in an options bitfield in the user table.

ColinP
09-06-2007, 12:30 PM
All that appears to be in the options field is a random string of numbers for each user - how do I use that to determine whether they're invisible or not?!

Paul M
09-06-2007, 06:02 PM
It's a bitfield so you have to 'and' the options value with the bit value for invisible

e.g.


$invisible = $options & $vbulletin->bf_misc_useroptions['invisible'];

if ($invisible) { do something; }