##############################################################
## MOD Title: Glance Addon [ Topic start date ]
## MOD Author: [R: R@m$e$ :U] < Ramses@FromRU.com > (Ramses) http://www.phpbbguru.net
## MOD Description: Display topic start day
## MOD Version: 1.0.0
##
## Installation Level: Easy
## Installation Time: ~3 Minutes
## Files To Edit: templates/subSilver/glance_body.tpl
## templates/subSilver/glance_recent.tpl, glance.php
## 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.
##############################################################
## Author Notes:
## With respect to Xpert ;)
##
##############################################################
## MOD History:
##
## 2005-02-23 - Version 1.0.0
## - first release =)
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################
#
#-----[ OPEN ]------------------------------------------
#
templates/subSilver/glance_body.tpl
#
#-----[ FIND ]------------------------------------------
#
{recent.BULLET} <a href="{recent.TOPIC_LINK}" class="genmed">{recent.TOPIC_TITLE}</a><br />
#
#-----[ REPLACE WITH ]------------------------------------------
#
{recent.BULLET} <a href="{recent.TOPIC_LINK}" class="genmed">{recent.TOPIC_TITLE}</a> [{recent.TOPIC_TIME}]<br />
#
#-----[ OPEN ]------------------------------------------
#
# if installed 'Glance Addon [ Separate templates for anno & recent ]'
templates/subSilver/glance_recent.tpl
#
#-----[ FIND ]------------------------------------------
#
{recent.BULLET} <a href="{recent.TOPIC_LINK}" class="genmed">{recent.TOPIC_TITLE}</a><br />
#
#-----[ REPLACE WITH ]------------------------------------------
#
{recent.BULLET} <a href="{recent.TOPIC_LINK}" class="genmed">{recent.TOPIC_TITLE}</a> [{recent.TOPIC_TIME}]<br />
#
#-----[ OPEN ]------------------------------------------
#
glance.php
#
#-----[ FIND ]------------------------------------------
#
$sql = "SELECT t.topic_id, t.topic_title, p.post_time
#
#-----[ REPLACE WITH ]------------------------------------------
#
$sql = "SELECT t.topic_id, t.topic_title, t.topic_time, p.post_time
#
#-----[ FIND ]------------------------------------------
#
$bullet = ( $unread_topic ) ? $recent_bullet_new : $recent_bullet_old;
#
#-----[ AFTER, ADD ]------------------------------------------
#
$topic_time = create_date($userdata['user_dateformat'], $latest_topics[$i]['topic_time'], $userdata['user_timezone']);
#
#-----[ FIND ]------------------------------------------
#
'BULLET' => $bullet,
#
#-----[ AFTER, ADD ]------------------------------------------
#
'TOPIC_TIME' => $topic_time,
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM##############################################################
## MOD Title: Glance Addon [ Topic start date ]
## MOD Author: [R: R@m$e$ :U] < Ramses@FromRU.com > (Ramses) http://www.phpbbguru.net
## MOD Description: Display topic start day
## MOD Version: 1.0.1
##
## Installation Level: Easy
## Installation Time: ~3 Minutes
## Files To Edit: templates/subSilver/glance_body.tpl
## templates/subSilver/glance_recent.tpl, glance.php
## 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.
##############################################################
## Author Notes:
## With respect to Xpert for Glance ;)
## With respect to Sergey Sekirin for find a bug ;)
##
##############################################################
## MOD History:
##
## 2005-02-23 - Version 1.0.1
## - Fix a small bug with dates for guests =)
##
## 2005-02-23 - Version 1.0.0
## - first release =)
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################
#
#-----[ OPEN ]------------------------------------------
#
templates/subSilver/glance_body.tpl
#
#-----[ FIND ]------------------------------------------
#
{recent.BULLET} <a href="{recent.TOPIC_LINK}" class="genmed">{recent.TOPIC_TITLE}</a><br />
#
#-----[ REPLACE WITH ]------------------------------------------
#
{recent.BULLET} <a href="{recent.TOPIC_LINK}" class="genmed">{recent.TOPIC_TITLE}</a> [{recent.TOPIC_TIME}]<br />
#
#-----[ OPEN ]------------------------------------------
#
# if installed 'Glance Addon [ Separate templates for anno & recent ]'
templates/subSilver/glance_recent.tpl
#
#-----[ FIND ]------------------------------------------
#
{recent.BULLET} <a href="{recent.TOPIC_LINK}" class="genmed">{recent.TOPIC_TITLE}</a><br />
#
#-----[ REPLACE WITH ]------------------------------------------
#
{recent.BULLET} <a href="{recent.TOPIC_LINK}" class="genmed">{recent.TOPIC_TITLE}</a> [{recent.TOPIC_TIME}]<br />
#
#-----[ OPEN ]------------------------------------------
#
glance.php
#
#-----[ FIND ]------------------------------------------
#
$sql = "SELECT t.topic_id, t.topic_title, p.post_time
#
#-----[ REPLACE WITH ]------------------------------------------
#
$sql = "SELECT t.topic_id, t.topic_title, t.topic_time, p.post_time
#
#-----[ FIND ]------------------------------------------
#
$bullet = ( $unread_topic ) ? $recent_bullet_new : $recent_bullet_old;
#
#-----[ AFTER, ADD ]------------------------------------------
#
$topic_time = create_date($userdata['user_dateformat'], $latest_topics[$i]['topic_time'], $userdata['user_timezone']);
#
#-----[ FIND ]------------------------------------------
#
'BULLET' => $bullet,
#
#-----[ AFTER, ADD ]------------------------------------------
#
'TOPIC_TIME' => $topic_time,
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM##############################################################
## MOD Title: Glance Addon [ Topic start date ] UPDATE
## MOD Author: [R: R@m$e$ :U] < Ramses@FromRU.com > (Ramses) http://www.phpbbguru.net
## MOD Description: Display topic start day
## MOD Version: 1.0.1
##
## Installation Level: Easy
## Installation Time: ~3 Minutes
## Files To Edit: templates/subSilver/glance_body.tpl
## templates/subSilver/glance_recent.tpl, glance.php
## 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.
##############################################################
## Author Notes:
## With respect to Xpert for Glance ;)
## With respect to Sergey Sekirin for find a bug ;)
##
##############################################################
## MOD History:
##
## 2005-02-23 - Version 1.0.1
## - Fix a small bug with dates for guests =)
##
## 2005-02-23 - Version 1.0.0
## - first release =)
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################
#
#-----[ OPEN ]------------------------------------------
#
glance.php
#
#-----[ FIND ]------------------------------------------
#
$topic_time = create_date($userdata['user_dateformat'], $latest_topics[$i]['topic_time'], $userdata['user_timezone']);
#
#-----[ REPLACE WITH ]------------------------------------------
#
$topic_time = create_date($board_config['default_dateformat'], $latest_topics[$i]['topic_time'], $board_config['board_timezone']);
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoMВернуться в Запросы модов для phpBB 2.0.x
Сейчас этот форум просматривают: нет зарегистрированных пользователей и гости: 1