Insert a new option to Admincp

kokeroulis

New Member
Hello

I am making a new modification for vbulletin and i need some help.I have create a new option in the admincp under the Forums & Moderators.The problem is that the name isn't the same name which i write in the includes/xml/cpnav_vbulletin.xml . In the admincp it is shown with the following form

Code:
*[option name]*

Do you know what this is happening?Please help me.
 

TheProphet

New Member
Build it like this

HTML:
<?xml version="1.0" encoding="ISO-8859-1"?>
<navgroups product="vbulletin"> 
<navgroup text="Your name here" displayorder="xx"> 
<navoption displayorder="1"> <text>option 1</text>
<link>yourlink option</link> 
</navoption> 
<navoption displayorder="2"> <text>option 2</text>
<link>yourlink option</link>  
</navoption>
<navoption displayorder="3"> <text>option 3</text>
<link>yourlink option</link>
</navoption>
</navgroup> 
</navgroups>
 
Top