1 sayfadan 1. sayfa

konunun yanında smileyiniz çıksın

İletiTarih: 09.10.2006, 16:22
hellboy
helboy yazdı:Resim
alexis 'in yaptığı son x konu modunda smileyler çıkmıyo nasıl düzeltebilirim

acaba sorun burdanmı kaynaklanıyo
Resim


Modun kendisi aşağıdadır.

Kod: Tümünü seç
##############################################################
## MOD Başlık: Smilies in Topic Titles
## MOD Yazar: Suisse < chatwithbea@bluewin.ch > (Florian Segginger) http://www.techno-revelation.com
## MOD Açıklama: Shows smilies in topic titles
## MOD Sürüm: 1.1.1
##
## Kurulum zorluğu: Easy
## Kurulum süresi: 5 Dakika
## Düzenlenecek dosyalar: viewforum.php, viewtopic.php, search.php
## Yüklenecek dosyalar: n/a
##############################################################
## Yazar notları:
##   If you want to disable certain smilies because they are too big or just plain ugly,
##   you have to put
##   $topic_title = str_replace("code for smiley","",$$topic_title);
##   just before
##   $topic_title = smilies_pass($topic_title);   
##   In viewforum.php
##   You obviously have to change 'code for smiley' with the actual bbcode of the smiley
##   Example:
##      $topic_title = str_replace(":)","",$topic_title);
##############################################################
## MOD Geçmişi:
##
##   2004-04-4 - Sürüm 1.0.0
##      - This is the first release
##   2004-04-14 - Sürüm 1.1.1
##   - I have been notified of the fact that the smilies don't show in the search and getdaily page.
##     The hack is still as easy to install as before(Thank you, Juan Antonio Illescas!)
##    2004-04-15
##   - I removed the unexisting page to modify (getdaily.php). I don't know where it came from.
##     Apparently, search.php has changed from my version of phpbb, so I can't garantee you the
##     hack will display smilies on the search page if your version is greater than 2.0.6
##
##############################################################
## Bu modu eklemeden önce lütfen dosyaların yedeğini alınız.
##############################################################

#
#-----[ AÇ ]------------------------------------------
#
viewtopic.php

#
#-----[ BUL ]------------------------------------------
#
include($phpbb_root_path . 'includes/page_header.'.$phpEx);

#
#-----[ SONRASINA EKLE ]------------------------------------
#
//Parse smilies to display topic title
$topic_title = smilies_pass($topic_title);

#
#-----[ AÇ ]------------------------------------------
#
viewforum.php

#
#-----[ BUL ]------------------------------------------
#
include($phpbb_root_path . 'common.'.$phpEx);

#
#-----[ SONRASINA EKLE ]------------------------------------
#
//Request the bbcode parsing php page, so we don't call an undefined function ;)
include($phpbb_root_path . 'includes/bbcode.' .$phpEx);

#
#-----[ BUL ]------------------------------------------
#
$topic_title = ( count($orig_word) ) ? preg_replace($orig_word, $replacement_word, $topic_rowset[$i]['topic_title']) : $topic_rowset[$i]['topic_title'];

#
#-----[ SONRASINA EKLE ]------------------------------------
#
//Parse smilies to show the title
//This is where you would put the code to disable certain smilies
$topic_title = smilies_pass($topic_title);

#
#-----[ AÇ ]------------------------------------------
#
search.php
 
#
#-----[ BUL ]------------------------------------------
#
if ( count($orig_word) )
{
$topic_title = preg_replace($orig_word, $replacement_word, $searchset[$i]['topic_title']);
}
 
#
#-----[ SONRASINA EKLE ]------------------------------------
#
//Parse smilies to show the title
//This is where you would put the code to disable certain smilies
$topic_title = smilies_pass($topic_title);
 

#
#-----[ BUL ]------------------------------------------
#
               if ($board_config['allow_smilies'] && $searchset[$i]['enable_smilies'])
               {
                  $message = smilies_pass($message);
 
#
#-----[ SONRASINA EKLE ]------------------------------------
#
                  //Parse smilies to show the title
                  //This is where you would put the code to disable certain smilies
                  $topic_title = smilies_pass($topic_title);
                  $post_subject = smilies_pass($post_subject);
 
#
#-----[ TÜM DOSYALARI KAYDET/KAPAT ]------------------------------------------
#
# Eklentinin Sonu

Cvp: konunun yanında smileyiniz çıksın

İletiTarih: 30.12.2006, 02:41
sabri ünal
ASYA yazdı:selam
bu mod simdi calisiyormu calismiyorumu ? :$

İletiTarih: 30.12.2006, 02:43
sabri ünal
mod verirken altına aynı anda soru sormayın :) sonra cevap alamazsınız ve küplere binersiniz...

başlıklar bölündü ve temizlendi...

gelelim BENİM soruMa, bu mod mu? soru mu?

ben bir şey anlamadım, ona göre müdahale edelim.

İletiTarih: 30.12.2006, 02:59
ASYA
sorum vardi benim
cok özürdilerim yeniyim burada
bunu ekliyecegim fakat calisip calismadigini bilmiyorum o yüzden sormusdum :)

Cvp: konunun yanında smileyiniz çıksın

İletiTarih: 30.12.2006, 10:39
Simuzer
mod çalışıyor ancak, ALEXIS'in bu modunda da ufak bir değişiklik yapmak gerekir.

Kod: Tümünü seç
#
#------[ AÇ ]------------------------------------------------------------------------
#

includes/page_header.php

#
#------[ BUL ]------------------------------------------------------------------------
#

      'L_TITLE' => $last_x_row[$i]['topic_title'],

#
#------[ BUNUNLA DEĞİŞTİR ]------------------------------------------------------
#

      'L_TITLE' => smilies_pass($last_x_row[$i]['topic_title']),

#
##-----[ TÜM DOSYALARI KAYDET/KAPAT ]-------------------------------------------------
#
# SON


Bu yapılan değişiklik şu mod içindir.

Kod: Tümünü seç
#####################################################################################
## MOD Adı  : gelişmiş son x konu
## Yazar    : ALEXIS  < N/A >  (Alexis Canver)  www.canver.net
## Sürüm    : 1.0.1b   (phpBB 2.0.x)