Overall Forums Permission Interactive + Attach Mod

Allgemeiner Support zum phpBB 2 Board und phpBB 2 Modifikationen
Forumsregeln
Auch wenn hier der Support für phpBB 2 weiterhin aufrecht erhalten bleibt, weisen wir darauf hin, dass das phpBB 2 nicht mehr offiziell unterstützt und weiterentwickelt wird!
Antworten
helluvaguy
Beiträge: 128
Registriert: Di 06.Apr, 2004 20:22

Overall Forums Permission Interactive + Attach Mod

Beitrag von helluvaguy »

Deine phpBB Version: 2.0.14
Typ Deines phpBB Forums: Standard phpBB (auch Vanilla genannt)
MODs: Ja



Fehlerbeschreibung und Nachricht

Ich habe den Mod "Overall Forums Permission Interactive" soweit angepaßt, dass ich Kalenderbefugnisse und die notwendigen Befugnisse des Yellow-card mod von Niels angezeigt bekomme, doch weiß ich nicht, wie ich die Befugnisse für Uploads und Downloads vom Attachment Mod einfügen kann.

Hat das schon irgendjemand gemacht?
Zuletzt geändert von helluvaguy am Mi 18.Mai, 2005 11:59, insgesamt 2-mal geändert.
Benutzeravatar
oxpus
Administrator
Beiträge: 28735
Registriert: Mo 27.Jan, 2003 22:13
Wohnort: Bad Wildungen
Kontaktdaten:

Beitrag von oxpus »

Ich hoffe, ich habe nichts vergessen:

Code: Alles auswählen

#
#-----[ OPEN ]-----
#
admin/admin_overall_forumauth.php

#
#-----[ FIND ]-----
#
	'POLLCREATE' => 'auth_pollcreate'

#
#-----[ REPLACE-WITH ]-----
#
	'POLLCREATE' => 'auth_pollcreate',
	'ATTACHMENTS' => 'auth_attachments',
	'DOWNLOAD' => 'auth_download'

#
#-----[ FIND ]-----
#
if( isset($HTTP_GET_VARS['adv']) )
{
	$adv = intval($HTTP_GET_VARS['adv']);
}
else
{
	unset($adv);
}

#
#-----[ AFTER, ADD ]-----
#
attach_setup_forum_auth($simple_auth_ary, $forum_auth_fields, $field_names);

#
#-----[ FIND ]-----
#
					'AUTH_POLLCREATE_IMG' => $forum_auth_images[$forum_rows[$j]['auth_pollcreate']]

#
#-----[ REPLACE-WITH ]-----
#
					'AUTH_POLLCREATE_IMG' => $forum_auth_images[$forum_rows[$j]['auth_pollcreate']],
					'AUTH_ATTACHMENTS_IMG' => $forum_auth_images[$forum_rows[$j]['auth_attachments']],
					'AUTH_DOWNLOAD_IMG' => $forum_auth_images[$forum_rows[$j]['auth_download']]

#
#-----[ OPEN ]-----
#
templates/subSilver/admin/auth_overall_forum_body.tpl

#
#-----[ FIND ]-----
#
		<td class="cat" align="center" valign="middle"><span class="gen">Poll</span></td>

#
#-----[ AFTER, ADD ]-----
#
		<td class="cat" align="center" valign="middle"><span class="gen">Attach</span></td>
		<td class="cat" align="center" valign="middle"><span class="gen">Down</span></td>

#
#-----[ FIND ]-----
#
		<td class="row2" align="center"><img src="../templates/subSilver/images/auth_overall_forum/{catrow.forumrow.AUTH_POLLCREATE_IMG}.gif" onClick="return change_auth(this,'{catrow.forumrow.AUTH_POLLCREATE_IMG}',{catrow.forumrow.FORUM_ID},'POLLCREATE');"><input type="hidden" id="auth_{catrow.forumrow.FORUM_ID}_POLLCREATE" name="auth[{catrow.forumrow.FORUM_ID}][POLLCREATE]"></td>

#
#-----[ AFTER, ADD ]-----
#
		<td class="row2" align="center"><img src="../templates/subSilver/images/auth_overall_forum/{catrow.forumrow.AUTH_ATTACHMENTS_IMG}.gif" onClick="return change_auth(this,'{catrow.forumrow.AUTH_ATTACHMENTS_IMG}',{catrow.forumrow.FORUM_ID},'ATTACHMENTS');"><input type="hidden" id="auth_{catrow.forumrow.FORUM_ID}_ATTACHMENTS" name="auth[{catrow.forumrow.FORUM_ID}][ATTACHMENTS]"></td>
		<td class="row2" align="center"><img src="../templates/subSilver/images/auth_overall_forum/{catrow.forumrow.AUTH_DOWNLOAD_IMG}.gif" onClick="return change_auth(this,'{catrow.forumrow.AUTH_DOWNLOAD_IMG}',{catrow.forumrow.FORUM_ID},'DOWNLOAD');"><input type="hidden" id="auth_{catrow.forumrow.FORUM_ID}_DOWNLOAD" name="auth[{catrow.forumrow.FORUM_ID}][DOWNLOAD]"></td>

#
#-----[ FIND ]-----
#
		<td colspan="13" class="catBottom" align="center"><input type="submit" class="liteoption" name="submit" value="{L_SUBMIT}" /></td>

#
#-----[ IN-LINE FIND ]-----
#
colspan="13"

#
#-----[ IN-LINE REPLACE WITH ]-----
#
colspan="15"


#
#-----[ SAVE/CLOSE ALL FILES ]-----
#
# EoM
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
Benutzeravatar
blondi
Beiträge: 1091
Registriert: Do 30.Sep, 2004 14:36

Beitrag von blondi »

kann man das für alle einstellungen auch machen?

ich hab nur das <td colspan="11" nicht 13 ... da fehlen mir ja noch einige einstellungen :-))

lieben gruss
Zuletzt geändert von blondi am Mo 09.Mai, 2005 12:09, insgesamt 2-mal geändert.
helluvaguy
Beiträge: 128
Registriert: Di 06.Apr, 2004 20:22

Beitrag von helluvaguy »

Nur ein kleines Komma :D
'POLLCREATE' => 'auth_pollcreate',
'ATTACHMENTS' => 'auth_attachments',
'DOWNLOAD' => 'auth_download',
Vielen Dank Oxpus.

@blondi: Welche Einstellungen meinst Du denn? Wie schon geschrieben steuere ich damit auch die Kalenderbefugnisse des Topic Calendars, sowie die Ban-, Green Card- und Blue Card- Befugnisse des Yellow Card Mod, sowie die Global Announcements.
Zuletzt geändert von helluvaguy am Mo 09.Mai, 2005 12:20, insgesamt 1-mal geändert.
Benutzeravatar
blondi
Beiträge: 1091
Registriert: Do 30.Sep, 2004 14:36

Beitrag von blondi »

ja diese fehlen mir alle...


habe nur diese einstellungen :-((
View | Read | Post | Reply | Edit | Del | Sticky | Ann | Vote | Poll | Attach | Down
helluvaguy
Beiträge: 128
Registriert: Di 06.Apr, 2004 20:22

Beitrag von helluvaguy »

Hehe, meins ist länger :D

View | Read | Post | Reply | Edit | Del | Cal | Sticky | Ann | Vote | Poll | Gl.Ann | Ban | Green | Blue | U/L |D/L
Benutzeravatar
blondi
Beiträge: 1091
Registriert: Do 30.Sep, 2004 14:36

Beitrag von blondi »

ich will das auch länger haben :-((
Benutzeravatar
oxpus
Administrator
Beiträge: 28735
Registriert: Mo 27.Jan, 2003 22:13
Wohnort: Bad Wildungen
Kontaktdaten:

Beitrag von oxpus »

Dann musst Du noch ein paar Mods einbauen :p
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
Benutzeravatar
blondi
Beiträge: 1091
Registriert: Do 30.Sep, 2004 14:36

Beitrag von blondi »

die meisten habe ich doch schon drinnen :-)) nur wie bekomm ich die da dazu?
helluvaguy
Beiträge: 128
Registriert: Di 06.Apr, 2004 20:22

Beitrag von helluvaguy »

Gestzt den Fall, Du hast den Topic Calendar Mod und den Yellow Card Mod drin, dann sind das die Veränderungen, der Orginal Dateien des Overall Forums Permission Interactive Mods.

Die Veränderungn bzgl. des Attachment Mods hat Oxpus ja schon oben gepostet.

Code: Alles auswählen

# 
#-----[ OPEN ]--------------------------------------------- 
# 

admin/admin_overall_forumauth.php

#
#-----[ FIND ]---------------------------------------------
#

//
// Start program - define vars
//
//                View      Read      Post      Reply     Edit     Delete    Sticky   Announce    Vote      Poll
$simple_auth_ary = array(
	0  => array(AUTH_ALL, AUTH_ALL, AUTH_ALL, AUTH_ALL, AUTH_REG, AUTH_REG, AUTH_MOD, AUTH_MOD, AUTH_REG, AUTH_REG),
	1  => array(AUTH_ALL, AUTH_ALL, AUTH_REG, AUTH_REG, AUTH_REG, AUTH_REG, AUTH_MOD, AUTH_MOD, AUTH_REG, AUTH_REG),
	2  => array(AUTH_REG, AUTH_REG, AUTH_REG, AUTH_REG, AUTH_REG, AUTH_REG, AUTH_MOD, AUTH_MOD, AUTH_REG, AUTH_REG),
	3  => array(AUTH_ALL, AUTH_ACL, AUTH_ACL, AUTH_ACL, AUTH_ACL, AUTH_ACL, AUTH_ACL, AUTH_MOD, AUTH_ACL, AUTH_ACL),
	4  => array(AUTH_ACL, AUTH_ACL, AUTH_ACL, AUTH_ACL, AUTH_ACL, AUTH_ACL, AUTH_ACL, AUTH_MOD, AUTH_ACL, AUTH_ACL),
	5  => array(AUTH_ALL, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_MOD),
	6  => array(AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_MOD),
);


# 
#-----[ REPLACE WITH ]-------------------------------------- 
#
//
// Start program - define vars
//
//-- mod : calendar --------------------------------------------------------------------------------
// here we added for each row a new column for calendar auth similar to the sticky value
// and add Calendar in the comment header
//-- modify
//-- mod : yellow card --------------------------------------------------------------------------------
// here we added for each row a new column for ban, unban, report auth similar to the sticky value
// and add Warn/ban, Unban,Report in the comment header
//-- modify
//                View      Read      Post      Reply     Edit     Delete   Calendar    Sticky   Announce    Vote      Poll    Warn/ban  Unban       Report
// Globalannounce added

$simple_auth_ary = array(
	0  => array(AUTH_ALL, AUTH_ALL, AUTH_ALL, AUTH_ALL, AUTH_REG, AUTH_REG, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_REG, AUTH_REG, AUTH_MOD, AUTH_MOD, AUTH_ADMIN, AUTH_REG),
	1  => array(AUTH_ALL, AUTH_ALL, AUTH_REG, AUTH_REG, AUTH_REG, AUTH_REG, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_REG, AUTH_REG, AUTH_MOD, AUTH_MOD, AUTH_ADMIN, AUTH_REG),
	2  => array(AUTH_REG, AUTH_REG, AUTH_REG, AUTH_REG, AUTH_REG, AUTH_REG, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_REG, AUTH_REG, AUTH_MOD, AUTH_MOD, AUTH_ADMIN, AUTH_REG),
	3  => array(AUTH_ALL, AUTH_ACL, AUTH_ACL, AUTH_ACL, AUTH_ACL, AUTH_ACL, AUTH_ACL, AUTH_ACL, AUTH_MOD, AUTH_ACL, AUTH_ACL, AUTH_MOD, AUTH_MOD, AUTH_ADMIN, AUTH_REG),
	4  => array(AUTH_ACL, AUTH_ACL, AUTH_ACL, AUTH_ACL, AUTH_ACL, AUTH_ACL, AUTH_ACL, AUTH_ACL, AUTH_MOD, AUTH_ACL, AUTH_ACL, AUTH_MOD, AUTH_MOD, AUTH_ADMIN, AUTH_REG),
	5  => array(AUTH_ALL, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_ADMIN, AUTH_REG),
	6  => array(AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_MOD, AUTH_ADMIN, AUTH_REG),
);
//-- fin mod : calendar ----------------------------------------------------------------------------


#
#-----[ FIND ]---------------------------------------------
#

$forum_auth_fields = array('auth_view', 'auth_read', 'auth_post', 'auth_reply', 'auth_edit', 'auth_delete', 'auth_sticky', 'auth_announce', 'auth_vote', 'auth_pollcreate');

$field_names = array(
	'auth_view' => $lang['View'],
	'auth_read' => $lang['Read'],
	'auth_post' => $lang['Post'],
	'auth_reply' => $lang['Reply'],
	'auth_edit' => $lang['Edit'],
	'auth_delete' => $lang['Delete'],
	'auth_sticky' => $lang['Sticky'],
	'auth_announce' => $lang['Announce'], 
	'auth_vote' => $lang['Vote'], 
	'auth_pollcreate' => $lang['Pollcreate']);


# 
#-----[ REPLACE WITH ]-------------------------------------- 
#

//-- mod : calendar --------------------------------------------------------------------------------
// here we added
//	, 'auth_cal'
//-- modify
//-- mod : Global Announce -------------------------------------------------------------------------
//-- add
//	, 'auth_globalannounce'
//-- modify
//-- mod : yellow card -----------------------------------------------------------------------------
//-- add
//	, 'auth_ban', 'auth_greencard', 'auth_bluecard'
//-- modify
$forum_auth_fields = array('auth_view', 'auth_read', 'auth_post', 'auth_reply', 'auth_edit', 'auth_delete', 'auth_cal', 'auth_sticky', 'auth_announce', 'auth_vote', 'auth_pollcreate', 'auth_globalannounce', 'auth_ban', 'auth_greencard', 'auth_bluecard');
//-- fin mod : calendar ----------------------------------------------------------------------------

$field_names = array(
	'auth_view' => $lang['View'],
	'auth_read' => $lang['Read'],
	'auth_post' => $lang['Post'],
	'auth_reply' => $lang['Reply'],
	'auth_edit' => $lang['Edit'],
	'auth_delete' => $lang['Delete'],
//-- mod : calendar --------------------------------------------------------------------------------
//-- add
	'auth_cal' => $lang['Calendar'],
//-- fin mod : calendar ----------------------------------------------------------------------------	
	'auth_sticky' => $lang['Sticky'],
	'auth_announce' => $lang['Announce'], 
	'auth_vote' => $lang['Vote'], 
	'auth_pollcreate' => $lang['Pollcreate'],
//-- mod : Global Announce -------------------------------------------------------------------------
//-- add
	'auth_globalannounce' => $lang['Globalannounce'],
//-- fin mod : global announce ---------------------------------------------------------------------	
//-- mod : yellow card -----------------------------------------------------------------------------
//-- add
	'auth_ban' => $lang['Ban'], 
	'auth_greencard' => $lang['Greencard'], 
	'auth_bluecard' => $lang['Bluecard']);
//-- fin mod : yellow card -------------------------------------------------------------------------


#
#-----[ FIND ]---------------------------------------------
#


$forum_auth_cats = array(
	'VIEW' => 'auth_view', 
	'READ' => 'auth_read', 
	'POST' => 'auth_post', 
	'REPLY' => 'auth_reply', 
	'EDIT' => 'auth_edit', 
	'DELETE' => 'auth_delete', 
	'STICKY' => 'auth_sticky', 
	'ANNOUNCE' => 'auth_announce', 
	'VOTE' => 'auth_vote', 
	'POLLCREATE' => 'auth_pollcreate',
);

# 
#-----[ REPLACE WITH ]-------------------------------------- 
#

$forum_auth_cats = array(
	'VIEW' => 'auth_view', 
	'READ' => 'auth_read', 
	'POST' => 'auth_post', 
	'REPLY' => 'auth_reply', 
	'EDIT' => 'auth_edit', 
	'DELETE' => 'auth_delete', 
	'CALENDAR' => 'auth_cal',
	'STICKY' => 'auth_sticky', 
	'ANNOUNCE' => 'auth_announce', 
	'VOTE' => 'auth_vote', 
	'POLLCREATE' => 'auth_pollcreate',
	'GLOBALANNOUNCE'=> 'auth_globalannounce',
	'BAN' => 'auth_ban',
	'GREENCARD' => 'auth_greencard',
	'BLUECARD' => 'auth_bluecard',
	'ATTACHMENTS' => 'auth_attachments',
	'DOWNLOAD' => 'auth_download',
);

#
#-----[ FIND ]---------------------------------------------
#

				$template->assign_block_vars("catrow.forumrow",	array(
					'FORUM_NAME' => $forum_rows[$j]['forum_name'],
					'FORUM_ID' => $forum_rows[$j]['forum_id'],
					'ROW_COLOR' => $row_color,
					'AUTH_VIEW_IMG' => $forum_auth_images[$forum_rows[$j]['auth_view']],
					'AUTH_READ_IMG' => $forum_auth_images[$forum_rows[$j]['auth_read']],
					'AUTH_POST_IMG' => $forum_auth_images[$forum_rows[$j]['auth_post']],
					'AUTH_REPLY_IMG' => $forum_auth_images[$forum_rows[$j]['auth_reply']],
					'AUTH_EDIT_IMG' => $forum_auth_images[$forum_rows[$j]['auth_edit']],
					'AUTH_DELETE_IMG' => $forum_auth_images[$forum_rows[$j]['auth_delete']],
					'AUTH_STICKY_IMG' => $forum_auth_images[$forum_rows[$j]['auth_sticky']],
					'AUTH_ANNOUNCE_IMG' => $forum_auth_images[$forum_rows[$j]['auth_announce']],
					'AUTH_VOTE_IMG' => $forum_auth_images[$forum_rows[$j]['auth_vote']],
					'AUTH_POLLCREATE_IMG' => $forum_auth_images[$forum_rows[$j]['auth_pollcreate']],

# 
#-----[ REPLACE WITH ]-------------------------------------- 
#

				$template->assign_block_vars("catrow.forumrow",	array(
					'FORUM_NAME' => $forum_rows[$j]['forum_name'],
					'FORUM_ID' => $forum_rows[$j]['forum_id'],
					'ROW_COLOR' => $row_color,
					'AUTH_VIEW_IMG' => $forum_auth_images[$forum_rows[$j]['auth_view']],
					'AUTH_READ_IMG' => $forum_auth_images[$forum_rows[$j]['auth_read']],
					'AUTH_POST_IMG' => $forum_auth_images[$forum_rows[$j]['auth_post']],
					'AUTH_REPLY_IMG' => $forum_auth_images[$forum_rows[$j]['auth_reply']],
					'AUTH_EDIT_IMG' => $forum_auth_images[$forum_rows[$j]['auth_edit']],
					'AUTH_DELETE_IMG' => $forum_auth_images[$forum_rows[$j]['auth_delete']],
					'AUTH_CALENDAR_IMG' => $forum_auth_images[$forum_rows[$j]['auth_cal']],
					'AUTH_STICKY_IMG' => $forum_auth_images[$forum_rows[$j]['auth_sticky']],
					'AUTH_ANNOUNCE_IMG' => $forum_auth_images[$forum_rows[$j]['auth_announce']],
					'AUTH_VOTE_IMG' => $forum_auth_images[$forum_rows[$j]['auth_vote']],
					'AUTH_POLLCREATE_IMG' => $forum_auth_images[$forum_rows[$j]['auth_pollcreate']],
					'AUTH_GLOBALANNOUNCE_IMG' => $forum_auth_images[$forum_rows[$j]['auth_globalannounce']],
					'AUTH_BAN_IMG' => $forum_auth_images[$forum_rows[$j]['auth_ban']],
					'AUTH_GREENCARD_IMG' => $forum_auth_images[$forum_rows[$j]['auth_greencard']],
					'AUTH_BLUECARD_IMG' => $forum_auth_images[$forum_rows[$j]['auth_bluecard']],
					'AUTH_ATTACHMENTS_IMG' => $forum_auth_images[$forum_rows[$j]['auth_attachments']],
					'AUTH_DOWNLOAD_IMG' => $forum_auth_images[$forum_rows[$j]['auth_download']],

# 
#-----[ OPEN ]--------------------------------------------- 
# 

templates/subSilver/admin/auth_overall_forum_body.tpl

#
#-----[ FIND ]---------------------------------------------
#

	<!-- BEGIN catrow -->
	<tr>
		<td class="catLeft" width="100%"><span class="cattitle"><b><a href="{catrow.U_VIEWCAT}">{catrow.CAT_DESC}</a></b></span></td>
		<td class="cat" align="center" valign="middle"><span class="gen">View</span></td>
		<td class="cat" align="center" valign="middle"><span class="gen">Read</span></td>
		<td class="cat" align="center" valign="middle"><span class="gen">Post</span></td>
		<td class="cat" align="center" valign="middle"><span class="gen">Reply</span></td>
		<td class="cat" align="center" valign="middle"><span class="gen">Edit</span></td>
		<td class="cat" align="center" valign="middle"><span class="gen">Del</span></td>
		<td class="cat" align="center" valign="middle"><span class="gen">Sticky</span></td>
		<td class="cat" align="center" valign="middle"><span class="gen">Ann</span></td>
		<td class="cat" align="center" valign="middle"><span class="gen">Vote</span></td>
		<td class="cat" align="center" valign="middle"><span class="gen">Poll </span></td>
	</tr>
	<!-- BEGIN forumrow -->
	<tr> 
		<td class="row1"><span class="gen">{catrow.forumrow.FORUM_NAME}</span></td>
		<td class="row2"><img src="../templates/subSilver/images/auth_overall_forum/{catrow.forumrow.AUTH_VIEW_IMG}.gif" onClick="return change_auth(this,'{catrow.forumrow.AUTH_VIEW_IMG}',{catrow.forumrow.FORUM_ID},'VIEW');"><input type="hidden" id="auth_{catrow.forumrow.FORUM_ID}_VIEW" name="auth[{catrow.forumrow.FORUM_ID}][VIEW]"></td>
		<td class="row2"><img src="../templates/subSilver/images/auth_overall_forum/{catrow.forumrow.AUTH_READ_IMG}.gif"  onClick="return change_auth(this,'{catrow.forumrow.AUTH_READ_IMG}',{catrow.forumrow.FORUM_ID},'READ');"><input type="hidden" id="auth_{catrow.forumrow.FORUM_ID}_READ" name="auth[{catrow.forumrow.FORUM_ID}][READ]"></td>
		<td class="row2"><img src="../templates/subSilver/images/auth_overall_forum/{catrow.forumrow.AUTH_POST_IMG}.gif" onClick="return change_auth(this,'{catrow.forumrow.AUTH_POST_IMG}',{catrow.forumrow.FORUM_ID},'POST');"><input type="hidden" id="auth_{catrow.forumrow.FORUM_ID}_POST" name="auth[{catrow.forumrow.FORUM_ID}][POST]"></td>
		<td class="row2"><img src="../templates/subSilver/images/auth_overall_forum/{catrow.forumrow.AUTH_REPLY_IMG}.gif" onClick="return change_auth(this,'{catrow.forumrow.AUTH_REPLY_IMG}',{catrow.forumrow.FORUM_ID},'REPLY');"><input type="hidden" id="auth_{catrow.forumrow.FORUM_ID}_REPLY" name="auth[{catrow.forumrow.FORUM_ID}][REPLY]"></td>
		<td class="row2"><img src="../templates/subSilver/images/auth_overall_forum/{catrow.forumrow.AUTH_EDIT_IMG}.gif" onClick="return change_auth(this,'{catrow.forumrow.AUTH_EDIT_IMG}',{catrow.forumrow.FORUM_ID},'EDIT');"><input type="hidden" id="auth_{catrow.forumrow.FORUM_ID}_EDIT" name="auth[{catrow.forumrow.FORUM_ID}][EDIT]"></td>
		<td class="row2"><img src="../templates/subSilver/images/auth_overall_forum/{catrow.forumrow.AUTH_DELETE_IMG}.gif" onClick="return change_auth(this,'{catrow.forumrow.AUTH_DELETE_IMG}',{catrow.forumrow.FORUM_ID},'DELETE');"><input type="hidden" id="auth_{catrow.forumrow.FORUM_ID}_DELETE" name="auth[{catrow.forumrow.FORUM_ID}][DELETE]"></td>
		<td class="row2"><img src="../templates/subSilver/images/auth_overall_forum/{catrow.forumrow.AUTH_STICKY_IMG}.gif" onClick="return change_auth(this,'{catrow.forumrow.AUTH_STICKY_IMG}',{catrow.forumrow.FORUM_ID},'STICKY');"><input type="hidden" id="auth_{catrow.forumrow.FORUM_ID}_STICKY" name="auth[{catrow.forumrow.FORUM_ID}][STICKY]"></td>
		<td class="row2"><img src="../templates/subSilver/images/auth_overall_forum/{catrow.forumrow.AUTH_ANNOUNCE_IMG}.gif" onClick="return change_auth(this,'{catrow.forumrow.AUTH_ANNOUNCE_IMG}',{catrow.forumrow.FORUM_ID},'ANNOUNCE');"><input type="hidden" id="auth_{catrow.forumrow.FORUM_ID}_ANNOUNCE" name="auth[{catrow.forumrow.FORUM_ID}][ANNOUNCE]"></td>
		<td class="row2"><img src="../templates/subSilver/images/auth_overall_forum/{catrow.forumrow.AUTH_VOTE_IMG}.gif" onClick="return change_auth(this,'{catrow.forumrow.AUTH_VOTE_IMG}',{catrow.forumrow.FORUM_ID},'VOTE');"><input type="hidden" id="auth_{catrow.forumrow.FORUM_ID}_VOTE" name="auth[{catrow.forumrow.FORUM_ID}][VOTE]"></td>
		<td class="row2"><img src="../templates/subSilver/images/auth_overall_forum/{catrow.forumrow.AUTH_POLLCREATE_IMG}.gif" onClick="return change_auth(this,'{catrow.forumrow.AUTH_POLLCREATE_IMG}',{catrow.forumrow.FORUM_ID},'POLLCREATE');"><input type="hidden" id="auth_{catrow.forumrow.FORUM_ID}_POLLCREATE" name="auth[{catrow.forumrow.FORUM_ID}][POLLCREATE]"></td>
	</tr>
	<!-- END forumrow -->
	<!-- END catrow -->

# 
#-----[ REPLACE WITH ]-------------------------------------- 
#

	<!-- BEGIN catrow -->
	<tr>
		<td class="catLeft" width="100%"><span class="cattitle"><b><a href="{catrow.U_VIEWCAT}">{catrow.CAT_DESC}</a></b></span></td>
		<td class="cat" align="center" valign="middle"><span class="gen">View</span></td>
		<td class="cat" align="center" valign="middle"><span class="gen">Read</span></td>
		<td class="cat" align="center" valign="middle"><span class="gen">Post</span></td>
		<td class="cat" align="center" valign="middle"><span class="gen">Reply</span></td>
		<td class="cat" align="center" valign="middle"><span class="gen">Edit</span></td>
		<td class="cat" align="center" valign="middle"><span class="gen">Del</span></td>
		<td class="cat" align="center" valign="middle"><span class="gen">Cal</span></td>
		<td class="cat" align="center" valign="middle"><span class="gen">Sticky</span></td>
		<td class="cat" align="center" valign="middle"><span class="gen">Ann</span></td>
		<td class="cat" align="center" valign="middle"><span class="gen">Vote</span></td>
		<td class="cat" align="center" valign="middle"><span class="gen">Poll </span></td>
		<td class="cat" align="center" valign="middle"><span class="gen">Gl.Ann</span></td>
		<td class="cat" align="center" valign="middle"><span class="gen">Ban</span></td>
		<td class="cat" align="center" valign="middle"><span class="gen">Green</span></td>
		<td class="cat" align="center" valign="middle"><span class="gen">Blue</span></td>
		<td class="cat" align="center" valign="middle"><span class="gen">U/L</span></td>
		<td class="cat" align="center" valign="middle"><span class="gen">D/L</span></td>
	</tr>
	<!-- BEGIN forumrow -->
	<tr> 
		<td class="row1"><span class="gen">{catrow.forumrow.FORUM_NAME}</span></td>
		<td class="row2" align="center"><img src="../templates/subSilver/images/auth_overall_forum/{catrow.forumrow.AUTH_VIEW_IMG}.gif" onClick="return change_auth(this,'{catrow.forumrow.AUTH_VIEW_IMG}',{catrow.forumrow.FORUM_ID},'VIEW');"><input type="hidden" id="auth_{catrow.forumrow.FORUM_ID}_VIEW" name="auth[{catrow.forumrow.FORUM_ID}][VIEW]"></td>
		<td class="row2" align="center"><img src="../templates/subSilver/images/auth_overall_forum/{catrow.forumrow.AUTH_READ_IMG}.gif"  onClick="return change_auth(this,'{catrow.forumrow.AUTH_READ_IMG}',{catrow.forumrow.FORUM_ID},'READ');"><input type="hidden" id="auth_{catrow.forumrow.FORUM_ID}_READ" name="auth[{catrow.forumrow.FORUM_ID}][READ]"></td>
		<td class="row2" align="center"><img src="../templates/subSilver/images/auth_overall_forum/{catrow.forumrow.AUTH_POST_IMG}.gif" onClick="return change_auth(this,'{catrow.forumrow.AUTH_POST_IMG}',{catrow.forumrow.FORUM_ID},'POST');"><input type="hidden" id="auth_{catrow.forumrow.FORUM_ID}_POST" name="auth[{catrow.forumrow.FORUM_ID}][POST]"></td>
		<td class="row2" align="center"><img src="../templates/subSilver/images/auth_overall_forum/{catrow.forumrow.AUTH_REPLY_IMG}.gif" onClick="return change_auth(this,'{catrow.forumrow.AUTH_REPLY_IMG}',{catrow.forumrow.FORUM_ID},'REPLY');"><input type="hidden" id="auth_{catrow.forumrow.FORUM_ID}_REPLY" name="auth[{catrow.forumrow.FORUM_ID}][REPLY]"></td>
		<td class="row2" align="center"><img src="../templates/subSilver/images/auth_overall_forum/{catrow.forumrow.AUTH_EDIT_IMG}.gif" onClick="return change_auth(this,'{catrow.forumrow.AUTH_EDIT_IMG}',{catrow.forumrow.FORUM_ID},'EDIT');"><input type="hidden" id="auth_{catrow.forumrow.FORUM_ID}_EDIT" name="auth[{catrow.forumrow.FORUM_ID}][EDIT]"></td>
		<td class="row2" align="center"><img src="../templates/subSilver/images/auth_overall_forum/{catrow.forumrow.AUTH_DELETE_IMG}.gif" onClick="return change_auth(this,'{catrow.forumrow.AUTH_DELETE_IMG}',{catrow.forumrow.FORUM_ID},'DELETE');"><input type="hidden" id="auth_{catrow.forumrow.FORUM_ID}_DELETE" name="auth[{catrow.forumrow.FORUM_ID}][DELETE]"></td>
		<td class="row2" align="center"><img src="../templates/subSilver/images/auth_overall_forum/{catrow.forumrow.AUTH_CALENDAR_IMG}.gif" onClick="return change_auth(this,'{catrow.forumrow.AUTH_CALENDAR_IMG}',{catrow.forumrow.FORUM_ID},'CALENDAR');"><input type="hidden" id="auth_{catrow.forumrow.FORUM_ID}_CALENDAR" name="auth[{catrow.forumrow.FORUM_ID}][CALENDAR]"></td>
		<td class="row2" align="center"><img src="../templates/subSilver/images/auth_overall_forum/{catrow.forumrow.AUTH_STICKY_IMG}.gif" onClick="return change_auth(this,'{catrow.forumrow.AUTH_STICKY_IMG}',{catrow.forumrow.FORUM_ID},'STICKY');"><input type="hidden" id="auth_{catrow.forumrow.FORUM_ID}_STICKY" name="auth[{catrow.forumrow.FORUM_ID}][STICKY]"></td>
		<td class="row2" align="center"><img src="../templates/subSilver/images/auth_overall_forum/{catrow.forumrow.AUTH_ANNOUNCE_IMG}.gif" onClick="return change_auth(this,'{catrow.forumrow.AUTH_ANNOUNCE_IMG}',{catrow.forumrow.FORUM_ID},'ANNOUNCE');"><input type="hidden" id="auth_{catrow.forumrow.FORUM_ID}_ANNOUNCE" name="auth[{catrow.forumrow.FORUM_ID}][ANNOUNCE]"></td>
		<td class="row2" align="center"><img src="../templates/subSilver/images/auth_overall_forum/{catrow.forumrow.AUTH_VOTE_IMG}.gif" onClick="return change_auth(this,'{catrow.forumrow.AUTH_VOTE_IMG}',{catrow.forumrow.FORUM_ID},'VOTE');"><input type="hidden" id="auth_{catrow.forumrow.FORUM_ID}_VOTE" name="auth[{catrow.forumrow.FORUM_ID}][VOTE]"></td>
		<td class="row2" align="center"><img src="../templates/subSilver/images/auth_overall_forum/{catrow.forumrow.AUTH_POLLCREATE_IMG}.gif" onClick="return change_auth(this,'{catrow.forumrow.AUTH_POLLCREATE_IMG}',{catrow.forumrow.FORUM_ID},'POLLCREATE');"><input type="hidden" id="auth_{catrow.forumrow.FORUM_ID}_POLLCREATE" name="auth[{catrow.forumrow.FORUM_ID}][POLLCREATE]"></td>
		<td class="row2" align="center"><img src="../templates/subSilver/images/auth_overall_forum/{catrow.forumrow.AUTH_GLOBALANNOUNCE_IMG}.gif" onClick="return change_auth(this,'{catrow.forumrow.AUTH_GLOBALANNOUNCE_IMG}',{catrow.forumrow.FORUM_ID},'GLOBALANNOUNCE');"><input type="hidden" id="auth_{catrow.forumrow.FORUM_ID}_GLOBALANNOUNCE" name="auth[{catrow.forumrow.FORUM_ID}][GLOBALANNOUNCE]"></td>
		<td class="row2" align="center"><img src="../templates/subSilver/images/auth_overall_forum/{catrow.forumrow.AUTH_BAN_IMG}.gif" onClick="return change_auth(this,'{catrow.forumrow.AUTH_BAN_IMG}',{catrow.forumrow.FORUM_ID},'BAN');"><input type="hidden" id="auth_{catrow.forumrow.FORUM_ID}_BAN" name="auth[{catrow.forumrow.FORUM_ID}][BAN]"></td>
		<td class="row2" align="center"><img src="../templates/subSilver/images/auth_overall_forum/{catrow.forumrow.AUTH_GREENCARD_IMG}.gif" onClick="return change_auth(this,'{catrow.forumrow.AUTH_GREENCARD_IMG}',{catrow.forumrow.FORUM_ID},'GREENCARD');"><input type="hidden" id="auth_{catrow.forumrow.FORUM_ID}_GREENCARD" name="auth[{catrow.forumrow.FORUM_ID}][GREENCARD]"></td>
		<td class="row2" align="center"><img src="../templates/subSilver/images/auth_overall_forum/{catrow.forumrow.AUTH_BLUECARD_IMG}.gif" onClick="return change_auth(this,'{catrow.forumrow.AUTH_BLUECARD_IMG}',{catrow.forumrow.FORUM_ID},'BLUECARD');"><input type="hidden" id="auth_{catrow.forumrow.FORUM_ID}_BLUECARD" name="auth[{catrow.forumrow.FORUM_ID}][BLUECARD]"></td>
		<td class="row2" align="center"><img src="../templates/subSilver/images/auth_overall_forum/{catrow.forumrow.AUTH_ATTACHMENTS_IMG}.gif" onClick="return change_auth(this,'{catrow.forumrow.AUTH_ATTACHMENTS_IMG}',{catrow.forumrow.FORUM_ID},'ATTACHMENTS');"><input type="hidden" id="auth_{catrow.forumrow.FORUM_ID}_ATTACHMENTS" name="auth[{catrow.forumrow.FORUM_ID}][ATTACHMENTS]"></td>
		<td class="row2" align="center"><img src="../templates/subSilver/images/auth_overall_forum/{catrow.forumrow.AUTH_DOWNLOAD_IMG}.gif" onClick="return change_auth(this,'{catrow.forumrow.AUTH_DOWNLOAD_IMG}',{catrow.forumrow.FORUM_ID},'DOWNLOAD');"><input type="hidden" id="auth_{catrow.forumrow.FORUM_ID}_DOWNLOAD" name="auth[{catrow.forumrow.FORUM_ID}][DOWNLOAD]"></td>
	</tr>
	<!-- END forumrow -->
	<!-- END catrow -->

#
#-----[ FIND ]---------------------------------------------
# 3 Instances

colspan="11"

# 
#-----[ REPLACE WITH ]-------------------------------------- 
#

colspan="18"


#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM
Hoffentlich habe ich dass auch alles richtig gepostet
Zuletzt geändert von helluvaguy am Di 10.Mai, 2005 13:42, insgesamt 1-mal geändert.
Antworten