...TÜRKİYE'NİN EN LEGAL PAYLAŞIM PLATFORMU...




ChatLaq Forum'a hoşgeldiniz! Forumumuzdan Tam Olarak Yararlanabilmek İçin Lütfen Üye Olun , Sadece 10 Saniyenizi Ayırarak Forumumuza Uye Olabilirsiniz ...

Eğer mevcut bir üyeliğiniz varsa lütfen alttaki "Üye Girişi" bağlantısına tıklayın. Üye değilseniz ChatLaq Forum'u kullamaya hemen başlamak için lütfen aşağıdaki Kayıt Ol Butonuna Tıklayın üyelik formunu doldurun ve "Gönder" tuşuna basın.
...TÜRKİYE'NİN EN LEGAL PAYLAŞIM PLATFORMU...




ChatLaq Forum'a hoşgeldiniz! Forumumuzdan Tam Olarak Yararlanabilmek İçin Lütfen Üye Olun , Sadece 10 Saniyenizi Ayırarak Forumumuza Uye Olabilirsiniz ...

Eğer mevcut bir üyeliğiniz varsa lütfen alttaki "Üye Girişi" bağlantısına tıklayın. Üye değilseniz ChatLaq Forum'u kullamaya hemen başlamak için lütfen aşağıdaki Kayıt Ol Butonuna Tıklayın üyelik formunu doldurun ve "Gönder" tuşuna basın.
...TÜRKİYE'NİN EN LEGAL PAYLAŞIM PLATFORMU...
Would you like to react to this message? Create an account in a few clicks or log in to continue.

...TÜRKİYE'NİN EN LEGAL PAYLAŞIM PLATFORMU...

Paylaşımın Türkiye'deki Tek Veliahtı
 
Kayıt OlAnasayfaLatest imagesAramaGiriş yap

 

 Last Post Topic On İndex

Aşağa gitmek 
YazarMesaj
Kont
Forum Asistanı
Forum Asistanı
Kont


Mesaj Sayısı : 1984
Yer : ChatLaq.FoRuM.St
Yaş : 28
Lakap : Ayıboğan
Erkek

Last Post Topic On İndex Empty
MesajKonu: Last Post Topic On İndex   Last Post Topic On İndex Icon_minitimePtsi Mayıs 11, 2009 2:36 pm

Bu modifikasyon sayesinde forumunuzda son atılan başlıkların ismi indexte görünür.


Kod:

##############################################################
## Mod Title: shows topic of last made post on index
## Mod Version: 1.4.0
## Author: e-sven http://www.e-sven.net
## Description: -adds lasts post topic to each forum on
## the index page (based on read-access)
## -word censorship is used
## -topic title with more then 27 chars are cut off
## -mouseover info displays the full title
##
## Installation Level: easy
## Installation Time: 2-5 Minutes
## Files To Edit: index.php
## Included Files: index.php (pre-modded)
##############################################################
## History:
## 0.9 not released beta
## 1.0 first working release
## 1.1 optimized db access
## 1.2 made implementation easier
## (only two replaces have to be made)
## 1.2a just a minor bug (thanks to Acid)
## 1.3 empty forums where not displayed correctly
## 1.4 optimized db-query
##############################################################
## Before Adding This MOD To Your Forum,
## You Should Back Up All Files Related To This MOD
##############################################################

#
#-----[ OPEN ]------------------------------------------------
#
index.php

#
#-----[ ACTION Find ]-----------------------------------------
#
$sql = "SELECT f.*, p.post_time, p.post_username, u.username, u.user_id
FROM (( " . FORUMS_TABLE . " f
LEFT JOIN " . POSTS_TABLE . " p ON p.post_id = f.forum_last_post_id )
LEFT JOIN " . USERS_TABLE . " u ON u.user_id = p.poster_id )
ORDER BY f.cat_id, f.forum_order";
break;
}
if ( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not query forums information', '', __LINE__, __FILE__, $sql);
}

$forum_data = array();
while( $row = $db->sql_fetchrow($result) )
{
$forum_data[] = $row;
}

if ( !($total_forums = count($forum_data)) )
{
message_die(GENERAL_MESSAGE, $lang['No_forums']);
}

//
// Obtain a list of topic ids which contain


#
#-----[ REPLACE WITH ]----------------------------------------
#
$sql = "SELECT f.*, p.post_time, p.post_username, u.username, u.user_id, t.topic_title, t.topic_last_post_id " .
" FROM ((( " . FORUMS_TABLE . " f " .
" LEFT JOIN " . POSTS_TABLE . " p ON p.post_id = f.forum_last_post_id )" .
" LEFT JOIN " . USERS_TABLE . " u ON u.user_id = p.poster_id ) " .
" LEFT JOIN " . TOPICS_TABLE . " t ON t.topic_last_post_id = p.post_id ) " .
" ORDER BY f.cat_id, f.forum_order";
break;
}
if ( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not query forums information', '', __LINE__, __FILE__, $sql);
}

$forum_data = array();
$topic_last_ary = array();
$i=0;
while( $row = $db->sql_fetchrow($result) )
{
if (!in_array($row['topic_last_post_id'], $topic_last_ary) || $row['topic_last_post_id']==0) {
$topic_last_ary[i]=$row['topic_last_post_id'];
$i++;
$forum_data[] = $row;
}
}
unset($topic_last_ary);
if ( !($total_forums = count($forum_data)) )
{
message_die(GENERAL_MESSAGE, $lang['No_forums']);
}

//
// Filter topic_title not allowed to read
//
if ( !($userdata['user_level'] == ADMIN && $userdata['session_logged_in']) ) {
$auth_read_all = array();
$auth_read_all=auth(AUTH_READ, AUTH_LIST_ALL, $userdata, $forum_data);
$auth_data = '';
for($i=0; $i {
if (!$auth_read_all[$forum_data[$i]['forum_id']]['auth_read']) {
$forum_data[$i]['topic_title']='';
}
}
}

//
// Define censored word matches
//
$orig_word = array();
$replacement_word = array();
obtain_word_list($orig_word, $replacement_word);

//
// Obtain a list of topic ids which contain


#
#-----[ ACTION Find ]-----------------------------------------
#
if ( $forum_data[$j]['forum_last_post_id'] )
{
...
}


#
#-----[ ACTION Replace With ]---------------------------------
#
if ( $forum_data[$j]['forum_last_post_id'] )
{
$topic_title = $forum_data[$j]['topic_title'];
$topic_title2 = $forum_data[$j]['topic_title'];

//
// Censor topic title
//
if ( count($orig_word) )
{
$topic_title = preg_replace($orig_word, $replacement_word, $topic_title);
$topic_title2 = preg_replace($orig_word, $replacement_word, $topic_title2);
}

if (strlen($topic_title)>27) {
$topic_title = substr($topic_title,0,24) . '...';
}

$last_post_time = create_date($board_config['default_dateformat'], $forum_data[$j]['post_time'], $board_config['board_timezone']);
$last_post = '' . $topic_title . '
';
$last_post .= $last_post_time . ' ' . $lang['View_latest_post'] . '
' . $lang['by'] . ' ';
$last_post .= ( $forum_data[$j]['user_id'] == ANONYMOUS ) ? ( ($forum_data[$j]['post_username'] != '' ) ? $forum_data[$j]['post_username'] . ' ' : $lang['Guest'] . ' ' ) : '' . $forum_data[$j]['username'] . ' ';
}

#
#-----[ SAVE/CLOSE ALL FILES ]----------------------------------
#
EoM

Sayfa başına dön Aşağa gitmek
https://errorcode06.forum.st
 
Last Post Topic On İndex
Sayfa başına dön 
1 sayfadaki 1 sayfası
 Similar topics
-
» Tabu Diyalogları (2. Topic)
» Beşiktaş İmzaları 2. Topic
» MüKeMMeL SoĞuK eSPRiLer [1. ToPiC]
» MüKeMMeL SoĞuK eSPRiLeR [2. ToPiC]
» Post Icons

Bu forumun müsaadesi var:Bu forumdaki mesajlara cevap veremezsiniz
...TÜRKİYE'NİN EN LEGAL PAYLAŞIM PLATFORMU... :: WEBMASTER :: PhpBB Yardım-
Buraya geçin: