freefh
30-Aug-2004, 06:06 AM
i added links to the admin cp everything shows up but since the links goto a external sorce i use the url but every thing uses act=something how do i get it to load an external page in the right frame of the admin cp?
Adding Admin Cp Links - NBS |
|
|
View Full Version : Adding Admin Cp Links freefh 30-Aug-2004, 06:06 AM i added links to the admin cp everything shows up but since the links goto a external sorce i use the url but every thing uses act=something how do i get it to load an external page in the right frame of the admin cp? Webby 06-Sep-2004, 07:46 AM It's like normal, just set the link right, example, if you wanted to change all these to external links, you'd go from: 800 => array ( 1 => array( 'Manage Badword Filters', 'act=admin&code=badword' ), 6 => array( 'Manage Ban Filters' , 'act=admin&code=ban' ), ), To: 800 => array ( 1 => array( 'Manage Badword Filters', 'http://url' ), 6 => array( 'Manage Ban Filters' , 'act=admin&code=ban' ), ), I only changed the first line, but you should get the idea :) |