I am working on a mod, and am using the nice and simple $config_vars for my admin page. I've pretty much figured out how to create checkboxes, textboxes, int fields, and permission settings. Is there a $config_var I can use for board selection? Basically working the same way permissions do it.
i.e.
$config_vars = array(
array('permissions', 'permission_key'),
);
is there a such thing as array('boards', 'key'), or something similar that will allow the user to select boards from a list of current boards?
Thanks in advance for any help.
No. You have to use a query and then add the results to your settings array.
Ah, ok. Thank you.