View Full Version : How do I create a new options group in ACP?
cbiweb
01-27-2021, 12:04 AM
I want to add a custom group of options in the navigation frame of the ACP. Debug mode doesn't provide a way to do it. After a few hours of looking through the files, I'm not seeing how that part of the ACP is assembled.
Any help would be much appreciated! :)
cbiweb
01-28-2021, 11:08 AM
Please, I know someone out there has done what I'm asking about. I haven't worked with vB or any kind of code for ten years, and have forgotten a lot. So I would really like to know how to create a new options group.
Thanks!
Two ways possible - creating inside admincp or writing directly in product-yourproductname.xml
It is the same way in vb4 and in vb5 so you should read https://forum.vbulletin.com/blogs/joe-d/3932614- (not all parts the same but for options it is) and for debug modus https://forum.vbulletin.com/forum/vbulletin-5-connect/vbulletin-5-connect-questions-problems-troubleshooting/vbulletin-5-support-issues-questions/418054-debug-mode?viewfull=1#post3605592 (in vb4 only one config.php exists)
My advice:
Create new product as described above, add options /optiongroups and export after every step the product-...xml. So you can see the relevant xml-syntax at the end of this file
<options><settinggroup name=""..><settings varname="">
and
<phrases><phrasetype><prase name="">
with naming conventions for optiongroup and option
Examples <phrase name="setting_SETTINGSVARNAME_desc/_title" and <phrase name="settinggroup_SETTINGGROUPNAME"
And at this point check also help text for your options and so on
With this you can write it later directly to xml. And as an example I used often as reference download the product YaAS 4.0.9 (Yet another award system) and read the xml with implementations of different option types.
cbiweb
01-29-2021, 03:43 PM
Thanks so much, shka! This should get me back on track. Much appreciated!
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.