Page 1 of 1

(Solved) ACP panel

PostPosted: Sat Jul 28, 2007 3:35 pm
Author: Watcher
Your phpBB Version: 2.0.22
phpBB Type: phpBB / IMPortal
MODs: No
Your knowledge: Basic Knowledge
Board URL: http://worldofarkania.net/Watchers_Art/portal.php?

PHP Version:
MySQL Version:


What was done before the problem appeared?
no problems just questions


What was done to try to solve the problem?




De.scription and Message

the ACP panel on the left at the top it gives this

Admin Index
Forum Index
Preview Forum
Portal
Preview Portal

what i need to know is where do i go to modify that list at the top to preview extra pages i have added to my forum, i know how to add to the Qbar but where do i go to add to the ACP menu

wonting to add

Preview Tutorial Feeds
Preview RSS Feeds

Also where do i find the Forum Block managment page,
there is a block managment page for the main portal, but not for the forum index page. is it listed as something else or is it something that is not to be changed?

Re: ACP panel

PostPosted: Sat Jul 28, 2007 5:56 pm
Author: Helter
your template/admin/index_navigate.tpl

Re: ACP panel

PostPosted: Sat Jul 28, 2007 7:02 pm
Author: Watcher
maybe im explaining what i need wrong
is there a a way to change the ACP menu at the top, like the forum menu can be changed with Qbar,
I went to the page you said to but i dont understand it at all sorry

what i am wonting to do is add 2 links so i can view 2 new pages with out leaving the acp control panel
with these 2 items

"Preview Tutorial Feeds" witch should link to this page,
http://worldofarkania.net/Watchers_Art/ ... php?page=3

and this

"Preview RSS Feeds" witch should link to this page
http://worldofarkania.net/Watchers_Art/ ... php?page=4

hope this explains it better for what i am looking for?
Thanks for your time <img>

Re: ACP panel

PostPosted: Sat Jul 28, 2007 8:13 pm
Author: tmotley
Helter understood perfectly what you were saying. In the file he mentioned you should be able to find those links. In Integra2, they look like this:

Code: Select all
 <tr> <td><a>{L_ADMIN_INDEX}</a></td></tr><tr> <td><a>{L_FORUM_INDEX}</a></td></tr><tr> <td><a>{L_PREVIEW_FORUM}</a></td></tr><tr> <td><a>{L_PORTAL_INDEX}</a></td></tr><tr> <td><a>{L_PREVIEW_PORTAL}</a></td></tr>


You'll want to add another 2 sets of links just like the last one only with the href changed and the link text changed. Here they are for you. Just insert them after the code posted above. I tested them on my site so I know they work.

[code]<tr> <td><a href="http]

NOTE: I tried to have it attach the page # onto the {U_PORTAL_INDEX} but it was attaching the SID first. So I just used the full URL.

Re: ACP panel

PostPosted: Sat Jul 28, 2007 10:03 pm
Author: Helter
replace your current template/admin/index_navigate.tpl with this

Code: Select all
 <script><!--  var menuVersion = "Slide Menu v1.0.0";  /*************************************************************  *   DHTML Slide Menu for ACP MOD  *  *   Copyright (C) 2004, Markus (phpMiX)  *   This .script is released under GPL License.  *   Feel free to use this .script (or part of it) wherever you need  *   it ...but please, give credit to original author. Thank you. ] = new menuCat('{catrow.MENU_CAT_ID}', {catrow.MENU_CAT_ROWS});<END>  function getObj(obj){     return ( document.getElementById ? document.getElementById(obj) : ( document.all ? document.all[obj] : null ) );}function displayObj(obj, status){     var x = getObj(obj);     if( x && x.style ) x.style.display = status;}  var queueInterval = 20;       // milliseconds between queued steps.var execInterval = 0;var queuedSteps;var currentStep;  function queueStep(o, s){     this.obj = o;     this.status = s;}function execQueue(){     if( currentStep <queuedSteps>= 0; i-- )         {             queuedSteps[currentStep++] = new queueStep(catName+'_'+i, 'none');         }         queuedSteps[currentStep++] = new queueStep(catName, 'none');     }       if( currentStatus == 'none' )     {         queuedSteps[currentStep++] = new queueStep(currentCat, 'block');         for( var i=0; i <menuCats></script><table>   <tr> <td><a><img></a></td>   </tr>   <tr>     <td> <table><tr> <th>{L_ADMIN}</th></tr><tr> <td><a>{L_ADMIN_INDEX}</a></td></tr><tr> <td><a>{L_FORUM_INDEX}</a></td></tr><tr> <td><a>{L_PREVIEW_FORUM}</a></td></tr><tr> <td><a>{L_PORTAL_INDEX}</a></td></tr><tr> <td><a>{L_PREVIEW_PORTAL}</a></td></tr><tr><td><a>Preview Tutorial Feeds</a></td></tr><tr><td><a>Preview "other" RSS Feeds</a></td></tr><BEGIN><tr> <td><span>{catrow.ADMIN_CATEGORY}</span></td></tr>         <tr>             <td>                 <div>                     <table><BEGIN><tr> <td><div><a>{catrow.modulerow.ADMIN_MODULE}</a></div></td></tr><END>                     </table>                 </div>             </td>         </tr><END></table></td></tr></table><br><div><span><script><document></script></span></div>  

Re: ACP panel

PostPosted: Sun Jul 29, 2007 2:24 am
Author: Watcher
That worked perfect thank you very much, when i looked at that .script it was like looking at am coded message with no decoder hehe some of them i can interpit but some of the complacated ones makes my mind melt, Thanks again!

Re: (Solved) ACP panel

PostPosted: Sun Jul 29, 2007 11:19 pm
Author: Helter
its the java .script at the begining that can make your head spin....lol