[外掛][管理模組]會員管理連結

MODs Released by Other phpbb Sites
非官方認證通過之 MOD ,或許有安全性之疑慮,所有問題由原發表者回覆!

版主: 版主管理群

主題已鎖定
頭像
godbless
竹貓忠實會員
竹貓忠實會員
文章: 647
註冊時間: 2002-05-17 06:02
來自: 台北市南京東路4段
聯繫:

[外掛][管理模組]會員管理連結

文章 godbless »

這個東西是讓論壇管理人員能夠更方便的去看到每一位會員的詳細資料!
裝完後,你可以任意點任何一位會員的名字進去看到他們的個人資料
就在個人資料裡面,在名字旁邊就會有個連結,可以讓論壇管理人員看到會員更詳細的設定!

代碼: 選擇全部

#################################################################
## Mod Title: User Administration Link on Profile
## Mod Version: 1.0.0
## Author: Matthijs <matthijs@beryllium.net>
## Description: This will add a link to the User Administration
##              of the Administration Panel on the 'view
##              profile' page. Will only display the link when
##              user is ADMIN.
##
## Installation Level: Easy
## Installation Time: 3 Minutes
## Files To Edit: includes/usercp_viewprofile.php,
##                language/lang_english/lang_main.php,
##                templates/subSilver/profile_view_body.tpl
## Included Files: N/A
#################################################################
## Security Disclaimer: This MOD Cannot Be Posted To Or Added At Any Non-Official phpBB Sites
#################################################################
##
## Author Note:
## You should change all your languages and themes if you use others
## then English and subSilver.
##
#################################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
#################################################################

#
#-----[ OPEN ]------------------------------------------
#
includes/usercp_viewprofile.php

#
#-----[ FIND ]------------------------------------------
#
$page_title = $lang['Viewing_profile'];
include($phpbb_root_path . 'includes/page_header.'.$phpEx);

#
#-----[ AFTER, ADD ]------------------------------------------
#

if( $userdata['user_level'] == ADMIN )
{
	$template->assign_vars(array(
		'L_USER_ADMIN' => sprintf($lang['User_admin_for'], $profiledata['username']),
		'U_ADMIN_PROFILE' => append_sid("admin/admin_users.$phpEx?mode=edit&" . POST_USERS_URL . '=' . $profiledata['user_id']))
	);
	$template->assign_block_vars("switch_user_admin", array());
}

#
#-----[ OPEN ]------------------------------------------
#
templates/fiapple/profile_view_body.tpl

#
#-----[ FIND ]------------------------------------------
#
	<td class="catLeft" width="60%" align="center"><b><span class="gen">{L_ABOUT_USER}</span></b>
	 


#
#-----[ AFTER,ADD]------------------------------------------
#
	
    <!-- BEGIN switch_user_admin -->
    <span class="gen"> (<a target="_admin" href="{U_ADMIN_PROFILE}" class="gen">{L_USER_ADMIN}</a>)</span>
    <!-- END switch_user_admin -->
	
#
#-----[ OPEN ]------------------------------------------
#
templates/subSilver/profile_view_body.tpl

#
#-----[ FIND ]------------------------------------------
#
	<td class="catRight" width="60%"><b><span class="gen">{L_ABOUT_USER}</span></b></td>
	 


#
#-----[ REPLACE WITH ]------------------------------------------
#
	<td class="catLeft" width="60%"><b><span class="gen">{L_ABOUT_USER}</span></b>
    <!-- BEGIN switch_user_admin -->
    <span class="gen"> (<a target="_admin" href="{U_ADMIN_PROFILE}" class="gen">{L_USER_ADMIN}</a>)</span>
    <!-- END switch_user_admin -->
	</td>

#
#-----[ OPEN ]------------------------------------------
#
languages/lang_chinese_traditional_taiwan/lang_main.php

#
#-----[ FIND ]------------------------------------------
#
$lang['About_user'] = '關於 %s'; // %s is username

#
#-----[ AFTER, ADD ]------------------------------------------
#
$lang['User_admin_for'] = " %s的詳細設定管理資料"; // %s is username

#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM
這個東西小竹子說他也有裝,就在竹貓外掛那裡就有了!
我只是把fiapple米掊的修改方式給弄了出來!
外掛問題區發問格式就在這裡,請務必一定照著格式來~!
你不照著規則來,就算是也搞不清楚你的問題在哪裡!
新手問問題不是罪惡
罪惡的是自己沒有先做好本分和功課,說話的口氣也不好,再加上態度有好像我們這群人欠你多少似的~~!!
竹貓星球發問規則:
http://phpbb-tw.net/phpbb/viewtopic.php?t=16149
發問比率最高的句子翻譯:
Please ensure both the install/ and contrib/ directories are deleted
請確認install和contrib資料夾已被刪除(奇怪,翻一下英漢字典有這麼困難嗎)
主題已鎖定

回到「非官方認證外掛」