View Full Version : Codes
lolzers
01-06-2008, 01:29 PM
Does anybody know the vB codes (e.g. display the user's username). I need them all so if anybody know a website that has them, or a FAQ section that has them, please link me. Or just post them yourself. Thanks!
kiril_cvetkov
01-06-2008, 01:44 PM
If I understend - you are looking for vbulletin coding resources..
You have API documentation for vbulletin
here http://members.vbulletin.com/api/index.htmlAnd Articles and Tutorials
here https://vborg.vbsupport.ru/forumdisplay.php?f=187
Opserty
01-06-2008, 01:50 PM
$vbulletin->userinfo['username'];
// OR in templates:
$bbuserinfo['username']
To find all:
var_dump($vbulletin->userinfo);
lolzers
01-06-2008, 02:45 PM
Osperty, where would i add that second code to see them all?
Opserty
01-06-2008, 03:20 PM
Stick it in a Plugin (Temporarily) hook location say global_complete or something.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.