PDA

View Full Version : [Question] Vbulletin terminologies and Acronyms


Come2Daddy
10-14-2008, 08:10 PM
Hello there,

Actually I'm trying to get started writting my own hacks and mods, but as you know times is tough :p , I found some special vbulletin conventions which I'm trying to familiarize, however I found some acronyms and terminology that I think the stuation would be much easier if I know those terminologies, and acronyms meanings such as:

CSRF in define('CSRF_PROTECTION', true);,

bf_ugp in bf_ugp_genericoptions,

GPC in $vbulletin->GPC['xxx'],

or bit such as in postbit, or reputationbits, .... etc.

of course I found its meaning in the dectionary, but I couldn't have any clue about what does it mean in the vb templates.

waiting your help, and thanx in advanced :)

Dismounted
10-15-2008, 06:21 AM
CSRF = Cross-Site Request Forgery. This is not a vBulletin terminology, but a widely used one in the web programming world.
bf_ugp = Bitfield Usergroup. Usergroup bitfields, with attention to bitfields. Bitfields are used in programming in general.
GPC = Get Post Cookies. Self-explanatory, and used in the PHP world.
Bit = a "bit" (not in "zeros and ones", but literal bit). Postbit = a part for a post. Reputationbits = a part for a reputation.

Come2Daddy
10-15-2008, 01:24 PM
Thanx a lot, I'm realy glad to receive this help, now many things make sense to me, but if you could refer me to a full reference for these acronyms at least those ones which are under vbulletin conventions, such as ugp or klimit by the way I still don't know what's klimit :D

any way thanks again :)

Lynne
10-15-2008, 02:47 PM
You may be interested in this section of the manual - Appendix 1: Terminology (http://www.vbulletin.com/docs/html/appendix_1)