Я уверен что я не первый, но надеюсь что это самая простая реализация, и самая лучшая
- Код: Выделить всё
##############################################################
## MOD Title: ICQ Number in topic
## MOD Author: Vladson < dkflbk@nm.ru > (n/a) http://dkflbk.nm.ru/
## MOD Description: Display ICQ Number under the Location field
## MOD Version: 1.0.0
##
## Installation Level: Easy
## Installation Time: 3 Minutes
## Files To Edit (2): viewtopic.php
## templates/subSilver/viewtopic_body.tpl
## Included Files: (n/a)
##############################################################
## For Security Purposes, Please Check: http://www.phpbbguru.net/mods/ for the
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code
## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered
## in our MOD-Database, located at: http://www.phpbbguru.net/mods/
##############################################################
## Author Notes:
##
## I don't think i am the first one.
## But i just wanted to do my best.
##
##############################################################
## MOD History:
##
## 2004-11-02 - Version 1.0.0
## - First One
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################
#
#-----[ OPEN ]------------------------------------------
#
viewtopic.php
#
#-----[ FIND ]------------------------------------------
#
$icq_img = '<a href="http://wwp.icq.com/scripts/search.dll?to=' . $postrow[$i]['user_icq'] . '"><img src="' . $images['icon_icq'] . '" alt="' . $lang['ICQ'] . '" title="' . $lang['ICQ'] . '" border="0" /></a>';
#
#-----[ AFTER, ADD ]------------------------------------------
#
$icq_num = $lang['ICQ'] . ' : ' . $postrow[$i]['user_icq'];
#
#-----[ FIND ]------------------------------------------
#
$icq_img = '';
#
#-----[ AFTER, ADD ]------------------------------------------
#
$icq_num = '';
#
#-----[ FIND ]------------------------------------------
#
'ICQ_IMG' => $icq_img,
#
#-----[ AFTER, ADD ]------------------------------------------
#
'ICQ_NUM' => $icq_num,
#
#-----[ OPEN ]------------------------------------------
#
templates/subSilver/viewtopic_body.tpl
#
#-----[ FIND ]------------------------------------------
#
<td width="150" align="left" valign="top" class="{postrow.ROW_CLASS}"><span class="name"><a name="{postrow.U_POST_ID}"></a><b>{postrow.POSTER_NAME}</b></span><br /><span class="postdetails">{postrow.POSTER_RANK}<br />{postrow.RANK_IMAGE}{postrow.POSTER_AVATAR}<br /><br />{postrow.POSTER_JOINED}<br />{postrow.POSTER_POSTS}<br />{postrow.POSTER_FROM}</span><br /></td>
#
#-----[ IN-LINE FIND ]------------------------------------------
#
<br />{postrow.POSTER_FROM}
#
#-----[ IN-LINE AFTER, ADD ]------------------------------------------
#
<br />{postrow.ICQ_NUM}
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM







