Bestimmte Buttons für Moderatoren ausblenden??
Verfasst: 16.01.2006 18:17
wie kann bestimmte buttons für moderatoren ausblenden (zb IP-Button, Thread-Sperrungs-Button ect)?
geht das überhaupt`?
geht das überhaupt`?
phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
Code: Alles auswählen
########################################################
## Mod Title: Ip_only_by_admin
## Mod Version: 1.0.0
## Author: Meik Sievertsen (acyd.burn@gmx.de)
## Description:
## This little mod allows only admins to view ip's
## Works with phpBB2 RC4 and greater
##
## Installation Level: easy
## Installation Time: 1 Minute
## Files To Edit: 2
## Included Files: 0
########################################################
##
#
#-----[ Open modcp.php ]------------------------------------------
#
#
#-----[ AFTER ]------------------------------------------
#
//
// End Auth Check
//
#
#-----[ ADD ]------------------------------------------
#
if (($mode == 'ip') && ($userdata['user_level'] != ADMIN))
{
$mode = '';
}
#
#-----[ Save and close modcp.php ]------------------------------------------
#
#
#-----[ Open viewtopic.php ]------------------------------------------
#
#
#-----[ REPLACE ]---------- around line 984 -------------------------------
#
$ip_img = '<a href="' . $temp_url . '"><img src="' . $images['icon_ip'] . '" alt="' . $lang['View_IP'] . '" title="' . $lang['View_IP'] . '" border="0" /></a>';
#
#-----[ WITH ]------------------------------------------
#
if( $userdata['user_level'] == ADMIN )
{
$ip_img = '<a href="' . $temp_url . '"><img src="' . $images['icon_ip'] . '" alt="' . $lang['View_IP'] . '" title="' . $lang['View_IP'] . '" border="0" /></a>';
}
else
{
$ip_img = '';
}
#
#-----[ Save and close viewtopic.php ]------------------------------------------
#