Seite 1 von 1
In welcher Datei ist die Navi von Adminbereich
Verfasst: 28.03.2005 13:45
von Gast210225
Hallo,
in welcher Datei ist die Navigation vom Adminbereich. Weil ich will da neue Links einfügen...
Verfasst: 28.03.2005 13:50
von Markus67
Hi ...
templates/subSilver/admin/index_navigate.tpl
Markus
Verfasst: 28.03.2005 14:04
von Gast210225
Hallo,
in der Datei steht bei mir
Code: Alles auswählen
<table width="100%" cellpadding="4" cellspacing="0" border="0" align="center">
<tr>
<td align="center" ><a href="{U_FORUM_INDEX}" target="_parent"><img src="../templates/subSilver/images/logo_phpBB_med.gif" border="0" /></a></td>
</tr>
<tr>
<td align="center" >
<table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline">
<tr>
<th height="25" class="thHead"><b>{L_ADMIN}</b></th>
</tr>
<tr>
<td class="row1"><span class="genmed"><a href="{U_ADMIN_INDEX}" target="main" class="genmed">{L_ADMIN_INDEX}</a></span></td>
</tr>
<tr>
<td class="row1"><span class="genmed"><a href="{U_FORUM_INDEX}" target="_parent" class="genmed">{L_FORUM_INDEX}</a></span></td>
</tr>
<tr>
<td class="row1"><span class="genmed"><a href="{U_FORUM_INDEX}" target="main" class="genmed">{L_PREVIEW_FORUM}</a></span></td>
</tr>
<!-- BEGIN catrow -->
<tr>
<td height="28" class="catSides"><span class="cattitle">{catrow.ADMIN_CATEGORY}</span></td>
</tr>
<!-- BEGIN modulerow -->
<tr>
<td class="row1"><span class="genmed"><a href="{catrow.modulerow.U_ADMIN_MODULE}" target="main" class="genmed">{catrow.modulerow.ADMIN_MODULE}</a></span>
</td>
</tr>
<!-- END modulerow -->
<!-- END catrow -->
</table>
</td>
</tr>
</table>
<br />
Wo sind da die Gruppen, Syles, ...?
Verfasst: 28.03.2005 14:08
von Markus67
Hi ....
hier eine Beschreibung wie du da Links einbaust
Code: Alles auswählen
###############################################
## Hack Title: Adding link in ACP
## Hack Version: 1.0.0
## Author: Kipper
## Description: This hack adds a new link into your ACP which can link to anywhere you wish.
## Compatibility: 2.0.6
##
## Installation Level: Easy
## Installation Time: 3 minutes
## Files To Edit: 3
## admin/index.php
## language/lang_english/lang_admin.php
## templates/subSilver/admin/index_navigate.tpl
##
## History:
## 4th Jan 04:1.0.0:First Release - All in working order
##
## Authors Notes:
## Where you find NEW_LINK_NAME please change to the name you wish the link to be named. (Extra NOTE: Use '_' to seperate the words, and keep the same on every appearance)
## Where you find NEW_LINK_HERE please change to the URL you wish the link to link to. (Extra NOTE: Use '_' to seperate the words, and keep the same on every appearance)
##
##
## Support: http://www.phpbbsupport.co.uk
## Copyright: ©2004 Adding link in ACP 1.0.0 - Kipper
##
###############################################
##
###############################################
## This program is free software; you can redistribute it and/or
## modify it under the terms of the GNU General Public License
## as published by the Free Software Foundation; either version 2
## of the License, or (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## http://www.gnu.org/copyleft/gpl.html
###############################################
#
#-----[ OPEN ]------------------------------------------
#
admin/index.php
#
#-----[ FIND ]------------------------------------------
#
"U_ADMIN_INDEX" => append_sid("index.$phpEx?pane=right"),
#
#-----[ ADD, AFTER ]------------------------------------------
#
"U_NEW_LINK_NAME" => append_sid("NEW_LINK_HERE"),
#
#-----[ FIND ]--------------------------
#
"L_PREVIEW_FORUM" => $lang['Preview_forum'])
#
#-----[ REPLACE WITH ]--------------------------
#
"L_PREVIEW_FORUM" => $lang['Preview_forum'],
#
#-----[ ADD, AFTER ]--------------------------
#
"L_NEW_LINK_NAME" => $lang['NEW_LINK_NAME'])
#
#-----[ OPEN ]--------------------------
#
language/lang_english/lang_admin.php
#
#-----[ FIND ]--------------------------
#
$lang['Preview_forum'] = 'Preview Forum';
#
#-----[ ADD, AFTER ]--------------------------
#
$lang['NEW_LINK_NAME'] = 'NEW_LINK_NAME';
#
#-----[ OPEN ]--------------------------
#
templates/subSilver/admin/index_navigate.tpl
#
#-----[ FIND ]--------------------------
#
<tr>
<td class="row1"><a href="{U_FORUM_INDEX}" target="main" class="genmed">{L_PREVIEW_FORUM}</a></td>
</tr>
#
#-----[ ADD, AFTER ]--------------------------
#
<tr>
<td class="row1"><a href="{U_NEW_LINK_NAME}" target="main" class="genmed">{L_NEW_LINK_NAME}</a></td>
</tr>
#
#-----[ SAVE & CLOSE ALL FILES ]--------------------------
#
#End of Hack
Markus