İyinet'e Hoşgeldiniz!

Türkiye'nin En Eski Webmaster Forum'una Hemen Kayıt Olun!

Kayıt Ol!

PHPBB'de İlk İletiden Sonra Adsense!

O

OLTA

Misafir
Ekteki ilgili kodları veriyorum...

elimden geldiğince Türkçeleştirdim açıkalmayı

Kod:
##############################################################
## MOD Title: Banner Ad After First Post
## MOD Author: geocator < [email protected] > (Brian) http://www.geocator.us
## MOD Description: Place a banner ad, including Google AdSense after the first post of each topic
## MOD Version: 0.0.3
## 
## OLTA
## OLTA ## OLTA
## OLTA
##
##############################################################

#
#-----[ phpMyAdmin'de aşağıdaki tabloyu oluşturun... (forum kullandığı db'de... ]------------------------------------------
#
CREATE TABLE `phpbb_ads` (
`ad_type` VARCHAR( 10 ) NOT lisanssız ,
`ad_id` TINYINT( 5 ) NOT lisanssız ,
`ad_code` TEXT NOT lisanssız ,
`ad_name` TINYINT( 25 ) NOT lisanssız,
UNIQUE (
`ad_id`
)
);

INSERT INTO `phpbb_ads` ( `ad_type` , `ad_id` , `ad_code`, `ad_name` )
VALUES (
'first_post', '1', 'Your banner code goes here', 'Defualt'
);
#
#-----[ KOPYALA ]------------------------------------------
#
firstpost_ad_body.tpl -> templates/subSilver/admin/firstpost_ad_body.tpl
admin_firstpost_ad.php -> admin/admin_firstpost_ad.php
#
#-----[ AÇ ]------------------------------------------
#

viewtopic.php
#
#-----[ BUL ]------------------------------------------
#
	$row_color = ( !($i % 2) ) ? $theme['td_color1'] : $theme['td_color2'];
	$row_class = ( !($i % 2) ) ? $theme['td_class1'] : $theme['td_class2'];

#
#-----[ SONRA, EKLE ]------------------------------------------
#
   if ( $i == 0)
   {
		$sql = "SELECT a.ad_code
		FROM " . ADS_TABLE . " a 
		WHERE a.ad_id=1";
		if ( !($result = $db->sql_query($sql)) )
		{
			message_die(GENERAL_ERROR, 'Could not query ad information', '', __LINE__, __FILE__, $sql);
		}
		$adRow = array();
		while( $row = $db->sql_fetchrow($result) )
		{
			$adRow[] = $row;
		}
		$db->sql_freeresult($result);
		$post_ad = '<tr><td colspan=2 class="firstPostAd">' . $adRow[0]['ad_code'] . '</td></tr>';
   }
   else
   {
      $post_ad = ' ';
   }
#
#-----[ BUL ]------------------------------------------
#
		'DELETE' => $delpost,

#
#-----[ARKASINA EKLE ]------------------------------------------
#
		'POST_AD' => $post_ad,
#
#-----[ AÇ ]------------------------------------------
#

includes/constants.php
#
#-----[ BUL ]------------------------------------------
#
define('VOTE_USERS_TABLE', $table_prefix.'vote_voters');
#
#-----[ ARKASINA EKLE ]------------------------------------------
#
define('ADS_TABLE', $table_prefix.'ads');

#
#-----[ AÇ ]------------------------------------------
#

templates/subSilver/overall_header.tpl
#
#-----[ BUL ]------------------------------------------
#
.helpline { background-color: {T_TR_COLOR2}; border-style: none; }
#
#-----[ ARKASINA EKLE ]------------------------------------------
#
td.firstPostAd {
	background-color: {T_TR_COLOR3}; border: {T_TH_COLOR3}; border-style: solid; border-width: 1px; text-align: center;
}
#
#-----[ AÇ ]------------------------------------------
#

templates/subSilver/viewtopic_body.tpl
#
#-----[ BUL]------------------------------------------
#
<!-- END postrow -->

#
#-----[ ÖNÜNE EKLE ]------------------------------------------
#
{postrow.POST_AD}
#

#-----[ AÇ ]------------------------------------------
#

language/lang_turkish/lang_admin.php
#
#-----[BUL ]------------------------------------------
#
//
// That's all Folks!
// -------------------------------------------------
#
#-----[ ÖNÜNE EKLE ]------------------------------------------
#
$lang['ad_managment']  = 'Reklam Yönetimi';
$lang['first_post_ad']  = 'İlk İletiden sonra reklam';
$lang['firstpost_ad']  = 'Ad code for add shown after first post in each topic';
$lang['Click_return_firstpost'] = 'Click %sHere%s to return to First Post Ad Configuration';
#
#-----[ TÜM DOSYALARI KAPA/KAYDET ]------------------------------------------
#
 

Türkiye’nin ilk webmaster forum sitesi iyinet.com'da forum üyeleri tarafından yapılan tüm paylaşımlardan; Türk Ceza Kanunu’nun 20. Maddesinin, 5651 Sayılı Kanununun 4. maddesinin 2. fıkrasına göre, paylaşım yapan üyeler sorumludur.

Backlink ve Tanıtım Yazısı için iletişime geçmek için Skype Adresimiz: .cid.1580508955483fe5

Üst