هاك الاعلانات في كافة الاقسام

منتدى خاص للنقاش حول هاكات الجيل الثاني أفكارها، مشاكل تركيبها وكل ماله علاقة بها.

المشرف: alhitary

صورة العضو الرمزية
عادل البدر
عضو جديد
عضو جديد
مشاركات: 50
اشترك في: الخميس سبتمبر 23, 2004 1:51 am
مكان: s_a

??? ????????? ?? ???? ???????

مشاركةبواسطة عادل البدر » الاثنين ديسمبر 12, 2005 2:56 am

???? ??? ????? ??? ????????? ?? ?????? ????????
???? ???? ???? ???????? ??? ??? ????? ?? ???? ??????? ???? ????????


كود: تحديد الكل

???? ????? ??? Announcements  on forums
--------------------------------------
??? ????? ?? ??? ???????? ???? ???? ??? ??? ????? ?? ???? ???????....

???? ????? ????? ?????:

[*]????
[ ]?????
[ ]???
[ ]??? ????


????? ????? ????? ???????:10 ?????

 ??????? ???? ????? ????????:

##			viewforum.php,
##			templates/subSilver/viewforum_body.tpl,
##			language/lang_english/subSilver/lang_admin.php,
##			admin/admin_board.php,
##			templates/subSilver/admin/board_config_body.tpl

?????? ????:

????? ??????? ???? ?????? ????????? ?? ?????? ???????? ?? 7 ???? ?????? ??????? ?? ???? ??????

_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

????? ???? ????? ???? ?? ??? ??? ???????? ??????? ??? ???????,,,



# 
#-----[ ???? ]------------------------------------------ 
# 

viewforum.php

# 
#-----[ ???? ?? ]------------------------------------------ 
# 

//
// End session management
//

# 
#-----[ ??? ???? ]------------------------------------------ 
# 

//-- mod : annonces ---
//-- add
	//
	// dur?e d'une annonce : 7 jours par d?faut par rapport au dernier reply
	$announcement_duration = 7;
	if ( !isset( $board_config['announcement_duration'] ) )
	{
		$sqlw = "insert into ".CONFIG_TABLE." (config_name,config_value) VALUES('announcement_duration','" . $announcement_duration . "')";
		if ( !($resultw = $db->sql_query($sqlw)) ) message_die(GENERAL_ERROR, 'Could not add key sub_forum in config table', '', __LINE__, __FILE__, $sql);
	}
	if ( isset( $board_config['announcement_duration'] ) )
	{
		$announcement_duration = $board_config['announcement_duration'];
	}
	$time_floor = time() - ( ($announcement_duration-1) * 24 * 3600 );
	//-------------------------------------------
	//
	// aller chercher les annonces
	//
	//-------------------------------------------
	$sql = 'select t.* '.
			'from '.TOPICS_TABLE.' as t, '.POSTS_TABLE. ' as p, '. FORUMS_TABLE . ' as f ' .
			'where p.post_id = t.topic_last_post_id and f.forum_id = t.forum_id and t.topic_type="'.POST_ANNOUNCE.'" '.
			'and p.post_time >= '.$time_floor . ' ' .
			'order by p.post_time desc';
	if( !($result = $db->sql_query($sql)) ) 
		message_die(GENERAL_ERROR, 'Could not query topic list :'. $sql, '', __LINE__, __FILE__, $sql);
	while ($row = $db->sql_fetchrow($result))
	{
		$w_is_auth = array();
		$w_is_auth = auth(AUTH_ALL, $row['forum_id'], $userdata);
		if( $w_is_auth['auth_view'] && $w_is_auth['auth_read'] ) $topicrow[] = $row;
	}
	if ( count($topicrow) > 0 )
	{
		$template->assign_block_vars('switch_annonce',array(
			'L_ANNONCE' => $lang['Post_Announcement'],
			)
		);
		for ($i=0;$i<count($topicrow);$i++)
		{
			$topic_url = append_sid("viewtopic.$phpEx?".POST_TOPIC_URL."=".$topicrow[$i]['topic_id']);
			$template->assign_block_vars('switch_annonce.topicrow',array(
				'TOPIC_FOLDER_IMG'   => $images['folder_announce'],
				'L_TOPIC_FOLDER_ALT' => $lang['Post_Announcement'],
				'U_VIEW_TOPIC'       => $topic_url,
				'TOPIC_TITLE'        => $topicrow[$i]['topic_title']
				)
			);
		}
	}
//-- fin mod : annonces ------
	
# 
#-----[ ???? ]------------------------------------------ 
# 

templates/subSilver/viewforum_body.tpl

# 
#-----[ ???? ?? ]------------------------------------------ 
# 


<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
	<tr> 
	  <td align="right" valign="bottom" colspan="2"><a class="maintitle" 	

# 
#-----[ ??? ???? ]------------------------------------------ 
# 

<!-- mod : annonces -->
<!-- BEGIN switch_annonce -->
<table width="100%" cellpadding="1" cellspacing="1" border="0" class="forumline">
  <tr>
	<th colspan="2" align="center" height="25" class="thCornerL" nowrap="nowrap"><span class="tableTitle">{switch_annonce.L_ANNONCE}</span></th>
  </tr>
  <!-- BEGIN topicrow -->
  <tr>
	<td class="row1" align="center" valign="middle" width="35" height="25">
		<img src="{switch_annonce.topicrow.TOPIC_FOLDER_IMG}" alt="{topicrow.switch_annonce.L_TOPIC_FOLDER_ALT}" title="{switch_annonce.topicrow.L_TOPIC_FOLDER_ALT}" />
	</td>
	<td class="row1">
		<span class="topictitle"> <a href="{switch_annonce.topicrow.U_VIEW_TOPIC}" class="topictitle">{switch_annonce.topicrow.TOPIC_TITLE}</a></span>
	</td>
  </tr> 
  <!-- END topicrow -->
</table>
<!-- END switch_annonce -->
<!-- fin mod : annonces -->

# 
#-----[ ???? ]------------------------------------------ 
# 

language/lang_arabic/lang_admin.php
			
# 
#-----[ ???? ?? ]------------------------------------------ 
# 

//
// That's all Folks!
// -------------------------------------------------

# 
#-----[ ??? ???? ]------------------------------------------ 
# 

//-- mod : annonces -

$lang['announcement_duration'] = '??? ??? ??????? ?? ?????? ????????';
//-- fin mod : annonces 

# 
					}	
					
# 
#-----[ ???? ]------------------------------------------ 
# 

admin/admin_board.php

# 
#-----[ ???? ?? ]------------------------------------------ 
# 

$template->assign_vars(array(

# 
#-----[ ??? ???? ]------------------------------------------ 
# 

//-- mod : annonces -
//-- add
	"L_ANNOUNCEMENT_DURATION" => $lang['announcement_duration'],
	"ANNOUNCEMENT_DURATION" => $new['announcement_duration'],
//-- fin mod : annonces 					

# 
#-----[ ???? ]------------------------------------------ 
# 

templates/subSilver/admin/board_config_body.tpl

# 
#-----[ ???? ?? ]------------------------------------------ 
# 

	<tr>
	  <th class="thHead" colspan="2">{L_ABILITIES_SETTINGS}</th>
	</tr>

# 
#-----[ ??? ???? ]------------------------------------------ 
# 

<!-- mod : annonces -->
	<tr>
	  <td class="row1">{L_ANNOUNCEMENT_DURATION}</td>
	  <td class="row2"><input type="text" name="announcement_duration" size="4" maxlength="4" value="{ANNOUNCEMENT_DURATION}" /></td>
	</tr>
<!-- fin mod : annonces -->


# 
#-----[ ???? ??????? ]------------------------------------------ 
# 
#??




dr.3
صُناع أريبيا
صُناع أريبيا
مشاركات: 2285
اشترك في: الثلاثاء فبراير 22, 2005 4:00 pm
مكان: السعودية
اتصال:

مشاركةبواسطة dr.3 » الاثنين ديسمبر 12, 2005 11:33 am


??? :)


???? ???? ?? ?? ???? ????? ????? ??????? ?? ??? ????? ?????? ???? ?????? ????? ????? ???? ?? ???? ??? ????? :idea:

صورة العضو الرمزية
المساعيد
عضو جديد
عضو جديد
مشاركات: 60
اشترك في: الجمعة أكتوبر 14, 2005 10:45 pm
مكان: في دنيا العشق و الحب
اتصال:

مشاركةبواسطة المساعيد » الاثنين ديسمبر 12, 2005 6:00 pm

???? ?? ???? ??? ?????

?? ??? ?? ????? ??? ???? ?? ??? ????? ???? ???? ????? ???? ???? ? ????? seve target as
نتمنى زيارتكم لمنتديات مطوري العالم

http://www.world-dev.com/forum/index.php

صورة العضو الرمزية
عادل البدر
عضو جديد
عضو جديد
مشاركات: 50
اشترك في: الخميس سبتمبر 23, 2004 1:51 am
مكان: s_a

مشاركةبواسطة عادل البدر » الاثنين ديسمبر 12, 2005 7:13 pm

dr.3 كتب:
??? :)


???? ???? ?? ?? ???? ????? ????? ??????? ?? ??? ????? ?????? ???? ?????? ????? ????? ???? ?? ???? ??? ????? :idea:
????? ??? ???????
??? ????? ??? ?? ????? ???? ???????? ???? ???? ???? ????? ?? ?????? ????????
??????? ??????? ??????? ???????? ?? ????? ????????? ???? ???? ??? ??? ?????? ??? ???????
??? ??? ???? ????? ?????? ??? ?????? ?? ???? ??? ????? ???? ??? ????? ?????????
?? ???? ?? ????????? ??? ??????? ???????? ???????? ??? ???? ???? ?? ?????? ?????
???? ?? ????? ????? ????? ????? ??????? ????? ?????
???? ????? ??????? ???? ?? ??? ???? ???????? ?????? ???? ???? ???? ????? ??? ???? ?????
??????

صورة العضو الرمزية
مهند قمرة
مشرف سابق
مشرف سابق
مشاركات: 4222
اشترك في: السبت أكتوبر 30, 2004 8:32 pm
مكان: مـصـر [ولي الفخر]
اتصال:

مشاركةبواسطة مهند قمرة » الاثنين ديسمبر 12, 2005 9:36 pm

????? ??? ??????? ??????

???????? ???? Dr.3 ???? ????? ?? ??? ????? ?? ?? ?? ??????? ??? ?? ??? ?? ???? ??? ?????. ???????? ?? ???? ???? ??????.
سأعود قريبا لعالمي في ارابيا :)
-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
صورة

dr.3
صُناع أريبيا
صُناع أريبيا
مشاركات: 2285
اشترك في: الثلاثاء فبراير 22, 2005 4:00 pm
مكان: السعودية
اتصال:

مشاركةبواسطة dr.3 » الثلاثاء ديسمبر 13, 2005 10:37 am


?? ???? ????? ? ???????? :?

?? ?? ??? ???? ??? ???? ???? ???? ???? .. ???? ?????? ???? ?????? ?????? ?????? ???? .. ???? ????? ?? ???? ?????? ?? ??? ???? ?? ???? ??? ????? :idea:

صورة العضو الرمزية
P A r i S
عضو جديد
عضو جديد
مشاركات: 88
اشترك في: الاثنين أكتوبر 24, 2005 5:42 pm

مشاركةبواسطة P A r i S » الخميس ديسمبر 15, 2005 7:21 am

????? ..
????? ???? ?? ??? ..
?????? :) ..
يارب لك الحمد كما ينبغي لجلال وجهك وعظيمـ سلطانك

صورة العضو الرمزية
iraq2u.org
عضو جديد
عضو جديد
مشاركات: 45
اشترك في: السبت سبتمبر 17, 2005 5:29 pm

مشاركةبواسطة iraq2u.org » الخميس فبراير 16, 2006 3:53 am

??? ?????? ...........

?? ??????? ???? ??? ??? ????? ?????? ...

??? ???? ???? ? ?? : ??????? ???? ?? ???? ????? ??? ?????? ?? ???? ?? ???? ????? ? ??? ???????? ? ??? ????? ?? ????? ????

?? ?????? ,,,
صورة



العودة إلى ”[ ×.2.0 ] الهاكات“

الموجودون الآن

المتصفحون للمنتدى الآن: لا يوجد أعضاء مسجلين متصلين و 19 زائرًا