What is the purpose of numbering the "const" like the following:
(!empty($user->lang['CODE'])) ? $user->lang['CODE'] : ucwords(strtolower(str_replace('_', ' ', 'CODE'))):
const g_CON_GRAY=12
const g_CON_GREEN=13
const g_CON_BLUE=14
const g_CON_WHITE=15
const g_CON_YELLOW=16
const g_CON_ORANGE=17
const g_CON_RED=18
const g_FIGHTPARTNER=19
const g_HEALPARTNER=20
const g_BOTHPARTNERS=21
const g_OUTLOUD=22
const g_TOGROUP=23
What to the numbers that the var equals represent?
Loraik