Quote:
Originally Posted by SirAdrian
$vbulletin->options is an array containing all the options, and should be available everywhere.
$vbulletin->options['legacypostbit'] just contains 1 or 0 depending on what you have that option set to.
|
0k, we're getting progress, so, now, where i can have a referrence of all the options? i mean, the php file with all of em?
and well, now on the if statement you told me, i suppose there is a way can be re arranged, so, the users can choose something on UCP like "Show normal postbit or postbit legacy"
PHP Code:
if ($user_have_choose_postibt == legacy)
{
$vbulletin->options['legacypostbit'] = 1;
}
else
{
$vbulletin->options['legacypostbit']= 0;
{
btw, sorry for bother with all this Uber Newbie questions lol, but im a very newbie on php