[MOD]Interested in Memberlist / İlgi Alanları Üye Listesinde

[url=http://www.phpbbturkey.com/mods.html:34cnv4ga]phpBB 2.0.x MOD Veritabanımızda[/url:34cnv4ga] yayınlanan ve tarafınızca eklenen tüm yeni phpBB 2.0.x sürümleri için MODların duyuruları buradan yapılmaktadır. MODlar hakkında ihtiyacınız olan desteği lütfen [b:34cnv4ga]2.0.x MOD Destek[/b:34cnv4ga] forumuna başlık açarak sorunuz.
Kilitli
Kullanıcı avatarı
phpBB-TR
Kayıtlı Kullanıcı
Mesajlar: 588
Kayıt: 24.12.2006, 13:34
Konum: İstanbul
İletişim:

[MOD]Interested in Memberlist / İlgi Alanları Üye Listesinde

Mesaj gönderen phpBB-TR »

Kod: Tümünü seç

############################################### 
## MOD Adı EN: INTERESTS IN MEMBERLIST 
## MOD Adı TR: ILGI ALANLARI ÜYE LİSTESİNDE
## MOD Yazar: kber < webmaster@phpbbegypt.com > (kber) http://www.phpbbegypt.com 
## MOD Description: Üyelerin ilgi alanlarını üye listesinde gösterir.
## 
## MOD Versiyon: 1.1.0 
## 
## Yükleme Seviyesi:Kolay
## Yükleme Dakikası: 5 dk.
## Düzenlenecek dosyalar: 3 
##   language/lang_english/lang_main.php 
##   memberlist.php 
##   templates/subSilver/memberlist_body.tpl 
##  
## Yüklenecek dosyalar:N/A  
## 
## Lisans: http://opensource.org/licenses/gpl-license.php GNU General Public License v2 
############################################################## 
## For security purposes, please check: http://www.phpbb.com/mods/ 
## for the latest version of this MOD. Although MODs are checked 
## before being allowed in the MODs Database there is no guarantee 
## that there are no security problems within the MOD. No support 
## will be given for MODs not found within the MODs Database which 
## can be found at http://www.phpbb.com/mods/ 
############################################################## 
############################################################## 
## Yazar Notları: 
## this is my third hack , i,m taking idea from a mod that add user avatar 
##in memberlist, but i think this is more intersting to share other users' 
## interests in memberlist page. 

############################################################## 
## MOD Geçmişi: 
## 2006-11-08 - virsion 1.1.0 
## fix mod look ( thnks evil3<) 
## 2006-11-08 - Version 1.0.0 
## -first Release ( IT S WORKING ) 
## 
############################################################## 
## Lütfen Modu Kurmadan Önce Dosya Yedeklerini Alınız !!
############################################################## 
#-----[ AÇ ]------------------------------------------ 
# 
   language/lang_turkish/lang_main.php 
# 
#-----[ BUL ]------------------------------------------ 
# 
   $lang['Order'] =
# 
#-----[ SONRASINA, EKLE ]------------------------------------------ 
# 
   $lang['Sort_INTERESTS'] = 'İlgi Alanları; 
# 
#-----[ AÇ ]------------------------------------------ 
# 
   memberlist.php 
# 
#-----[ BUL ]------------------------------------------ 
# 
$mode_types_text = array($lang['Sort_Joined'], $lang['Sort_Username'], $lang['Sort_Location'], $lang['Sort_Posts'], $lang['Sort_Email'],  $lang['Sort_Website'], $lang['Sort_Top_Ten']); 
# 
#-----[ İÇİNDE BUL ]------------------------------------------ 
# 
$lang['Sort_Top_Ten'] 
# 
#-----[ İÇİNDE SONRASINA, EKLE ]------------------------------------------ 
# 
, $lang['Sort_INTERESTS'] 
# 
#-----[ BUL ]------------------------------------------ 
# 
$mode_types = array('joindate', 'username', 'location', 'posts', 'email', 'website', 'topten'); 
# 
#-----[ İÇİNDE BUL ]------------------------------------------ 
# 
'topten' 
# 
#-----[ İÇİNDE SONRASINA, EKLE ]------------------------------------------ 
# 
, 'interests' 
# 
#-----[ BUL ]------------------------------------------ 
# 
'L_PM' => $lang['Private_Message'], 
# 
#-----[ SONRASINA, EKLE ]------------------------------------------ 
# 
'L_INTERESTS' => $lang['interests'], 
# 
#-----[ BUL ]------------------------------------------ 
# 
case 'topten': 
      $order_by = "user_posts $sort_order LIMIT 10"; 
      break; 
# 
#-----[ SONRASINA, EKLE ]------------------------------------ 
# 
case 'interests': 
      $order_by = "user_occ $sort_order LIMIT $start, " . $board_config['topics_per_page']; 
      break; 
# 
#-----[ BUL ]------------------------------------------ 
# 
$sql = "SELECT username, user_id, user_viewemail, user_posts, user_regdate, user_from, user_website, user_email, user_icq, user_aim, user_yim, user_msnm, user_avatar, user_avatar_type, user_allowavatar 
# 
#-----[ İÇİNDE BUL ]------------------------------------------ 
# 
user_allowavatar 
# 
#-----[ İÇİNDE SONRASINA, EKLE ]------------------------------------------ 
# 
, user_interests 
# 
#-----[ BUL ]------------------------------------------ 
# 
$search = '<a href="' . $temp_url . '">' . $lang['Search_user_posts'] . '</a>'; 
# 
#-----[ SONRASINA, EKLE ]------------------------------------ 
# 
$interests = ( !empty($row['user_interests']) ) ? $row['user_interests'] : '&nbsp;'; 
# 
#-----[ BUL ]------------------------------------------ 
# 
'YIM' => $yim, 
# 
#-----[ SONRASINA, EKLE ]------------------------------------ 
# 
'INTERESTS' => $interests, 
# 
#-----[ AÇ ]------------------------------------------ 
# 
   templates/subSilver/memberlist_body.tpl 
# 
#-----[ BUL ]------------------------------------------ 
# 
<th class="thTop" nowrap="nowrap">{L_USERNAME}</th> 
# 
#-----[ SONRASINA, EKLE ]------------------------------------ 
# 
<th class="thTop" nowrap="nowrap">{L_INTERESTS}</th> 
# 
#-----[ BUL ]------------------------------------------ 
# 
<td class="{memberrow.ROW_CLASS}" align="center"><span class="gen"><a href="{memberrow.U_VIEWPROFILE}" class="gen">{memberrow.USERNAME}</a></span></td> 
# 
#-----[ SONRASINA, EKLE ]------------------------------------ 
# 
<td class="{memberrow.ROW_CLASS}" align="center" valign="middle"><span class="gen">{memberrow.INTERESTS}</span></td> 
# 
#-----[ TÜM DOSYALARI KAYDET & KAPAT | FTPDEKİLERLE DEĞİŞTİR ]-------------------------- 
# 
# SoN
Kullanıcı avatarı
FataL_RhymE
Kayıtlı Kullanıcı
Mesajlar: 43
Kayıt: 22.12.2006, 16:56
İletişim:

Mesaj gönderen FataL_RhymE »

Daha önce verilmişti..
Kilitli

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

Kimler çevrimiçi

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