Thanks for your replies.
Can you please tell me what to do after creating the plugin at admin_options_processing hook.
Is this correct ?
PHP Code:
if(explode(',', $vbulletin->options['show_settings']))
{
$showchecked = true;
}
else
{
$showchecked = false;
}
What I want to achieve is quite simple but i am not able to figure it out.
See.. I am showing 3 radio buttons via template. Simple !
Now.. I have created 3 checkboxes (corresponding to radio buttons) so that whichever is checked THAT radio button would show. How do I achieve this ? What should I wrap around my radio button code in template so that the corresponding one shows only when it is allowed (checked in admincp).
Thank you