Seite 1 von 1

Forums ID wo?????

Verfasst: 25.01.2006 23:33
von franticfreak
Wie erkenne ich die foren ID???
will für dasEZ portal ein bestimmtes thema anzeigen lassen, woran erkenn ich also die ID

Verfasst: 26.01.2006 00:01
von Peggy
An der URL erkennst du das:

z.b. hier das Forum "installation und Update" hat diese URL
http://www.phpbb.de/viewforum.php?f=12

ID = 12
:wink:

Lösung

Verfasst: 26.01.2006 07:03
von gloriosa
Hallo,
wer es komfortabler haben möchte baut dieses Snippet

Code: Alles auswählen

############################################### 
##   Hack Title:   Show Forum ID
##                 (A phpBB2 Quickie)
##   Author:       Nivisec (support@nivisec.com)
##                 http://www.nivisec.com
##   Description:  Displays the forum id in the
##                 forum management admin cp.
##
##   Compatibility:   2.0.x
## 
##   Support:      http://www.phpbbhacks.com/forums 
##   Copyright:      ©2003 Billy Sauls
## 
############################################### 
# 
#-----[ OPEN ]------------------------------------------ 
# 
admin/admin_forums.php

# 
#-----[ FIND ]------------------------------------------ 
# 
		'FORUM_NAME' => $forum_rows[$j]['forum_name'],

# 
#-----[ AFTER, ADD ]------------------------------------------ 
#
					'FORUM_ID' => $forum_id,
					
# 
#-----[ OPEN ]------------------------------------------ 
# 
templates/subSilver/admin/forum_admin_body.tpl

# 
#-----[ FIND ]------------------------------------------ 
# 
		<td class="row2"><span class="gen"><a href="{catrow.forumrow.U_VIEWFORUM}" target="_new">{catrow.forumrow.FORUM_NAME}</a></span><br /><span class="gensmall">{catrow.forumrow.FORUM_DESC}</span></td>

# 
#-----[ REPLACE WITH ]------------------------------------------ 
#
		<td class="row2"><span class="gen"><a href="{catrow.forumrow.U_VIEWFORUM}" target="_new">{catrow.forumrow.FORUM_NAME}</a>&nbsp;&nbsp;(Forum ID# {catrow.forumrow.FORUM_ID})</span><br /><span class="gensmall">{catrow.forumrow.FORUM_DESC}</span></td>
		
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM
ein. :wink: Dadurch wird die Foren-ID im ACP --> Forum --> Einstellungen / Forum Administration z.B. so dargestellt --> Allgemeines (Forum ID# 1). :D