Log in

View Full Version : adding extra links in ADMINCP -- help??


DelFDgfd_gT
02-16-2006, 11:52 PM
Under "Styles & Templates":

Style Manager
Edit Templates <---- WANT TO ADD THIS
Search in Templates
Replacement Variable Manager
Download / Upload Styles
Find Updated Templates


The closest I've gotten is the file: cpnav_vbulletin.xml


<navgroup phrase="styles_and_templates" permissions="canadminstyles" displayorder="20">

<navoption displayorder="10">
<phrase>style_manager</phrase>
<link>template.php?do=modify</link>
</navoption>

<navoption displayorder="20">
<phrase>search_in_templates</phrase>
<link>template.php?do=search</link>
</navoption>

<navoption displayorder="30">
<phrase>replacement_variable_manager</phrase>
<link>replacement.php?do=modify</link>
</navoption>

<navoption displayorder="40">
<phrase>download_upload_styles</phrase>
<link>template.php?do=files</link>
</navoption>

<navoption displayorder="50">
<phrase>find_updated_templates</phrase>
<link>template.php?do=findupdates</link>
</navoption>

</navgroup>


What can I do to successfully add the "edit templates" link -- which I think is template.php?s=&do=modify&expandset=1&group=all#all ???


Any help would be appreciated please.

wonderful support we got here...

DelFDgfd_gT
02-18-2006, 07:25 AM
any help on this please?

DelFDgfd_gT
02-19-2006, 07:42 PM
figured it out... created a /includes/xml/cpnav_edittemps.xml file and put this in:


?xml version="1.0" encoding="ISO-8859-1"?>
<navgroups product="vbulletin">
<navgroup phrase="styles_and_templates" permissions="canadminstyles" displayorder="20">
<navoption displayorder="1">
<text>Edit Templates</text>
<link>template.php?s=&amp;group=&amp;do=modify&amp;expandset=1</link>
</navoption>
</navgroup>
</navgroups>


Had it right the whole time except the "&" was suppose to be "&amp;"