duyuru sabit ayırma ????

phpBB 2.0.x sürümleri için yapılmasını istediğiniz veya arayıpta bulamadığınız MODları buraya yazabilirsiniz.
Cloyster
Kayıtlı Kullanıcı
Mesajlar: 6
Kayıt: 18.08.2006, 13:39
İletişim:

Mesaj gönderen Cloyster »

Teşekkürler, fakat çalışmadı...
Kullanıcı avatarı
devilcnr
Kayıtlı Kullanıcı
Mesajlar: 42
Kayıt: 14.05.2007, 06:22
İletişim:

Mesaj gönderen devilcnr »

Bunu dene ben kullanıyorum ve çalışıyor... Ek olarak bi dosya var onu unutma....

Kod: Tümünü seç

##############################################################
## MOD Title: Separate Announcements & Sticky
## MOD Author: Aiencran < cranportal@katamail.com > 
## MOD Description: This hack separates Announcements and Sticky Topics from other topics in viewforum page. 
## MOD Version: 2.0.0
##
## Installation Level: Easy
## Installation Time: 3 Minutes
## Files To Edit: viewforum.php, 
##		  language/lang_english/lang_main.php, 
##		  templates/subSilver/viewforum_body.tpl
## Included Files: includes/functions_separate.php
##############################################################
## For Security Purposes, Please Check: http://www.phpbb.com/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.phpbb.com/mods/
##############################################################
## Author Notes:
##
##############################################################
## MOD History:
##
##   2005-03-15 - Version 2.0.0
##      - Announcements and Sticky Topics are separated
##	- Sticky Topics are shown only in the first page (original behaviour)
##
##   2004-10-27 - Version 1.1.0
##      - It supports now Global Announcements
##	- Fixed sorting issues
##
##   2004-10-20 - Version 1.0.0
##      - First Version
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################

# 
#-----[ COPY ]------------------------------------------ 
# 
copy includes/functions_separate.php to includes/functions_separate.php

# 
#-----[ OPEN ]------------------------------------------ 
# 
viewforum.php

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

# 
#-----[ AFTER, ADD ]------------------------------------
#
include($phpbb_root_path . 'includes/functions_separate.'.$phpEx);

# 
#-----[ FIND ]------------------------------------------ 
# 
$total_topics += $total_announcements;

# 
#-----[ AFTER, ADD ]------------------------------------
#
$dividers = get_dividers($topic_rowset);

# 
#-----[ FIND ]------------------------------------------ 
# 
	'U_VIEW_TOPIC' => $view_topic_url)
);

# 
#-----[ AFTER, ADD ]------------------------------------
#
if ( array_key_exists($i, $dividers) )
{
	$template->assign_block_vars('topicrow.divider', array(
		'L_DIV_HEADERS' => $dividers[$i])
	);
}

# 
#-----[ OPEN ]------------------------------------------ 
# 
language/lang_english/lang_main.php

# 
#-----[ FIND ]------------------------------------------ 
# 
//
// That's all, Folks!
// -------------------------------------------------

# 
#-----[ BEFORE, ADD ]------------------------------------
#
$lang['Global_Announcements'] = 'Global Announcements';
$lang['Announcements'] = 'Announcements';
$lang['Sticky_Topics'] = 'Sticky Topics';

# 
#-----[ OPEN ]------------------------------------------ 
# 
templates/subSilver/viewforum_body.tpl

# 
#-----[ FIND ]------------------------------------------ 
# 
<!-- BEGIN topicrow -->

# 
#-----[ AFTER, ADD ]------------------------------------------ 
# 
<!-- BEGIN divider -->
<tr> 
   <td class="catHead" colspan="6" height="28"><span class="cattitle">{topicrow.divider.L_DIV_HEADERS}</span></td>
</tr>
<!-- END divider -->

#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM 
Dosya ekleri
includes.zip
Copy
(919 Byte) 193 kere indirildi
BYSERCAN07
Kayıtlı Kullanıcı
Mesajlar: 109
Kayıt: 04.09.2006, 13:53
İletişim:

Mesaj gönderen BYSERCAN07 »

Bende Yaptım Saol Güzel oldu :lol:
Kullanıcı avatarı
fth1903
Kayıtlı Kullanıcı
Mesajlar: 67
Kayıt: 16.12.2006, 22:39
İletişim:

Mesaj gönderen fth1903 »

devilcnr yazdı:Bunu dene ben kullanıyorum ve çalışıyor... Ek olarak bi dosya var onu unutma....

Kod: Tümünü seç

##############################################################
## MOD Title: Separate Announcements & Sticky
## MOD Author: Aiencran < cranportal@katamail.com > 
## MOD Description: This hack separates Announcements and Sticky Topics from other topics in viewforum page. 
## MOD Version: 2.0.0
##
## Installation Level: Easy
## Installation Time: 3 Minutes
## Files To Edit: viewforum.php, 
##		  language/lang_english/lang_main.php, 
##		  templates/subSilver/viewforum_body.tpl
## Included Files: includes/functions_separate.php
##############################################################
## For Security Purposes, Please Check: http://www.phpbb.com/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.phpbb.com/mods/
##############################################################
## Author Notes:
##
##############################################################
## MOD History:
##
##   2005-03-15 - Version 2.0.0
##      - Announcements and Sticky Topics are separated
##	- Sticky Topics are shown only in the first page (original behaviour)
##
##   2004-10-27 - Version 1.1.0
##      - It supports now Global Announcements
##	- Fixed sorting issues
##
##   2004-10-20 - Version 1.0.0
##      - First Version
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################

# 
#-----[ COPY ]------------------------------------------ 
# 
copy includes/functions_separate.php to includes/functions_separate.php

# 
#-----[ OPEN ]------------------------------------------ 
# 
viewforum.php

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

# 
#-----[ AFTER, ADD ]------------------------------------
#
include($phpbb_root_path . 'includes/functions_separate.'.$phpEx);

# 
#-----[ FIND ]------------------------------------------ 
# 
$total_topics += $total_announcements;

# 
#-----[ AFTER, ADD ]------------------------------------
#
$dividers = get_dividers($topic_rowset);

# 
#-----[ FIND ]------------------------------------------ 
# 
	'U_VIEW_TOPIC' => $view_topic_url)
);

# 
#-----[ AFTER, ADD ]------------------------------------
#
if ( array_key_exists($i, $dividers) )
{
	$template->assign_block_vars('topicrow.divider', array(
		'L_DIV_HEADERS' => $dividers[$i])
	);
}

# 
#-----[ OPEN ]------------------------------------------ 
# 
language/lang_english/lang_main.php

# 
#-----[ FIND ]------------------------------------------ 
# 
//
// That's all, Folks!
// -------------------------------------------------

# 
#-----[ BEFORE, ADD ]------------------------------------
#
$lang['Global_Announcements'] = 'Global Announcements';
$lang['Announcements'] = 'Announcements';
$lang['Sticky_Topics'] = 'Sticky Topics';

# 
#-----[ OPEN ]------------------------------------------ 
# 
templates/subSilver/viewforum_body.tpl

# 
#-----[ FIND ]------------------------------------------ 
# 
<!-- BEGIN topicrow -->

# 
#-----[ AFTER, ADD ]------------------------------------------ 
# 
<!-- BEGIN divider -->
<tr> 
   <td class="catHead" colspan="6" height="28"><span class="cattitle">{topicrow.divider.L_DIV_HEADERS}</span></td>
</tr>
<!-- END divider -->

#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM 
bu modda xs_mod kurulumu istiyormu ?
Kullanıcı avatarı
devilcnr
Kayıtlı Kullanıcı
Mesajlar: 42
Kayıt: 14.05.2007, 06:22
İletişim:

Mesaj gönderen devilcnr »

Hatırlamıyorum ama bende kurulu extreme style.. Extreme style modunun kurulumu yoq, dosyaları atıosun: çok zor deil at gitsin derim..
WaReZM.NeT lWarez'in Yeni Adresi!!l
Mod Kurulum Makalesi
rockandbeer
Kayıtlı Kullanıcı
Mesajlar: 24
Kayıt: 03.04.2007, 06:53
İletişim:

Re:

Mesaj gönderen rockandbeer »

devilcnr yazdı:Hatırlamıyorum ama bende kurulu extreme style.. Extreme style modunun kurulumu yoq, dosyaları atıosun: çok zor deil at gitsin derim..
kurdum hiç bi hata vermedi... ama çalışmadıda ? eğer özel bişi daha yapmam gerekmiyosa...
Kilitli

“2.0.x MOD İstekleri” sayfasına dön

Kimler çevrimiçi

Bu forumu görüntüleyen kullanıcılar: Hiç bir kayıtlı kullanıcı yok ve 2 misafir