صفحة 1 من 3

[?????] [2.0] ????? Artodia Mobile ?????????? ????? ???

مرسل: الأحد سبتمبر 18, 2011 9:47 pm
بواسطة Saif Alhak
??? ??????? : Artodia Mobile
???? ??????? : Arty
????? ??????? : 2.0
????? ??????? : 3.0.9
????? ??????? : ?????? ?? ??????? ????????? ?????????? ???????? ? ???????? ??? 7
??????? ??????? : ??? ?? ???? ????? prosilver ?????? ??? ?? ?? ??? ????????? ????? ?? ???? ???? ??? ??? ??????? ???? ??? ????? ??? prosilver ?????? ?? ?????? ??????? ??? ????? ??????? ??? ?? ???? ????? ????
????? ??????? : Saif Alhak ????? ????? ?? ???? ??????? ;)
??? ??????? :
111.png
111.png (19.65 KiB) تمت المشاهدة 24911 مرةً
222.png
222.png (20.26 KiB) تمت المشاهدة 24911 مرةً
????? ??????? :
art_mobile V2.0.zip
(90.71 KiB) حُمِّل 1141 مرةً
?? ???? ??? !! :o :shock:

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

????? ?? ?????? ??????? ?? ???? ?????? ??? ??????? ???? ??? ?????? ??????? ????? ?? ???? ??????? ???? ?? ??? ?????? URL ???? ??? ???? ???

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

=style&action=details&id=6
????? ?? ??? ?? ????? ?????? 6 ?????? ???? ???? ????? ????? ???? ????????? ??????? .... ???? ????? ??????? ????? ?????????? ....


???? ??? includes/functions.php

???? ??

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

	// The following assigns all _common_ variables that may be used at any point in a template.
??? ????

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

	// MOD start: Mobile/SEO style
	if(defined('MOBILE_DEVICE'))
	{
		$full_style = defined('MOBILE_DEVICE_OFF');
		if($full_style)
		{
			$s_search_hidden_fields['nomobile'] = 1;
			$mobile_text = isset($user->lang['MOBILE_ON']) ? $user->lang['MOBILE_ON'] : 'Mobile Version';
			$mobile_link = str_replace('nomobile=1&', '', append_sid("{$phpbb_root_path}index.$phpEx", 'nomobile=0'));
		}
		else
		{
			$mobile_text = isset($user->lang['MOBILE_OFF']) ? $user->lang['MOBILE_OFF'] : 'Full Version';
			$mobile_link = append_sid("{$phpbb_root_path}index.$phpEx", 'nomobile=1');
		}
		$mobile_html = '<a href="' . $mobile_link . '">' . $mobile_text . '</a>';
		$user->lang['TRANSLATION_INFO'] = (isset($user->lang['TRANSLATION_INFO']) ? $user->lang['TRANSLATION_INFO'] . ' ' : '') . $mobile_html;
		$template->assign_var('MOBILE_LINK', $mobile_html);
	}
	// MOD end: Mobile/SEO style


???? ??? includes/session.php

???? ??

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

		$result = $db->sql_query($sql, 3600);
		$this->theme = $db->sql_fetchrow($result);
		$db->sql_freeresult($result);

		// User has wrong style
??? ????

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

		// MOD start: Mobile/SEO style
		if($this->check_mobile($sql, $style))
		{
		// MOD end: Mobile/SEO style
???? ??

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

		if (!$this->theme)
		{
			trigger_error('Could not get style data', E_USER_ERROR);
		}
??? ????

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

		// MOD start: Mobile/SEO style
		}
		if(defined('MOBILE_DEVICE_OFF'))
		{
			global $SID, $_EXTRA_URL;
			$SID .= '&nomobile=1';
			$_EXTRA_URL[] = 'nomobile=1';
		}
		// MOD end: Mobile/SEO style
???? ??

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

	/**
	* More advanced language substitution
??? ????

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

	// MOD start: Mobile/SEO style
	/**
	* Check for mobile/seo, get style
	*/
	function check_mobile($sql, $style)
	{
		$browser = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : '';
		if (empty($this->data['is_bot']) && strpos($browser, 'Mobile') === false && strpos($browser, 'Symbian') === false && strpos($browser, 'Opera M') === false && strpos($browser, 'Android') === false && stripos($browser, 'HTC_') === false && strpos($browser, 'Fennec/') === false && stripos($browser, 'Blackberry') === false && strpos($browser, 'Windows Phone') === false && strpos($browser, 'WP7') === false && strpos($browser, 'WP8') === false)
		{
				return true;
		}
		define('MOBILE_DEVICE', true);
		if(!empty($_REQUEST['nomobile']))
		{
			define('MOBILE_DEVICE_OFF', true);
			return true;
		}
		global $db;
		// Important: change number 0 below to ID of Artodia:Mobile style.
		// If it is set to 0, script will automatically find style, but it will use extra time and resources.
		$mobile_style_id = 0;
		if($mobile_style_id)
		{
			$sql2 = str_replace('s.style_id = ' . $style, 's.style_id = ' . $mobile_style_id, $sql);
			$result = $db->sql_query($sql2, 3600);
			$this->theme = $db->sql_fetchrow($result);
			$db->sql_freeresult($result);
			if($this->theme !== false)
			{
				define('MOBILE_STYLE', true);
				return false;
			}
		}
		// try to find style
		global $phpbb_root_path;
		$files = scandir($phpbb_root_path . 'styles');
		$base = $phpbb_root_path . 'styles/';
		for($i=0; $i<count($files); $i++)
		{
			if($files[$i] != '.' && $files[$i] != '..' && is_dir($base . $files[$i]) && @file_exists($base . $files[$i] . '/style.cfg'))
			{
				// found directory with style
				$data = file_get_contents($base . $files[$i] . '/style.cfg');
				if(strpos($data, 'mobile = 1') !== false && ($pos = strpos($data, 'name = ')) !== false)
				{
					$list = explode("\n", substr($data, $pos + 7), 2);
					$name = trim($list[0]);
					// found style
					$sql2 = str_replace('s.style_id = ' . $style, 's.style_name = \'' . $db->sql_escape($name) . '\'', $sql);
					$result = $db->sql_query($sql2, 3600);
					$this->theme = $db->sql_fetchrow($result);
					$db->sql_freeresult($result);
					if($this->theme !== false)
					{
						define('MOBILE_STYLE', true);
						return false;
					}
				}
			}
		}
		return true;
	}
	// MOD end: Mobile/SEO style

????? ?? ?????? ??????? ??????? ??? ID ??????? ??? ??????? ???? ???? ?????
?????? ?? ????? 16 ?? ????? ?????? ????

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

$mobile_style_id = 0;
??? ????? ??? ????? ID ??????? ? ??? ??? ?????? ?? 6

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



????? ????????? ;)
????? ??? ???????



* ?? ??????? ??????? 2.0 ?????? 18/10/2011

[?????] ????? Artodia Mobile ?????????? ????? ???

مرسل: الأحد سبتمبر 18, 2011 10:01 pm
بواسطة محمود الديب
??? ??? ??? ????

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

??????

[?????] ????? Artodia Mobile ?????????? ????? ???

مرسل: الأحد سبتمبر 18, 2011 11:39 pm
بواسطة TheIlluminative
???? ????? ??? ??????? .. ??? ???? ???? ???? ???? 1.2 ??? .. ?? ??? ??????? Windows Phone 7 ???? .. ?? ?????? ?????? ;)

[?????] ????? Artodia Mobile ?????????? ????? ???

مرسل: الأحد سبتمبر 18, 2011 11:57 pm
بواسطة Saif Alhak
????? ??? ?????? ;)

?? ????? ?? ???? ??? ????? ?? phpBB.com ??? ?? ???? ?????? ??? ??? ??? ????? ??????? :D

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

[?????] ????? Artodia Mobile ?????????? ????? ???

مرسل: الاثنين سبتمبر 19, 2011 12:15 am
بواسطة TheIlluminative
?????? ??? ???? ??? ???? ??? ???? ????????? ?? phpBB.com .. ????? ??? ????? ??? ??? ???????? .. ?? ??????? ??? ???? ??????? :lol:

[?????] ????? Artodia Mobile ?????????? ????? ???

مرسل: الاثنين سبتمبر 19, 2011 12:31 am
بواسطة Saif Alhak
TheIlluminative كتب:?????? ??? ???? ??? ???? ??? ???? ????????? ?? phpBB.com .. ????? ??? ????? ??? ??? ???????? .. ?? ??????? ??? ???? ??????? :lol:

???? ???? :mrgreen: :lol: .... ?? ???? ???? ???? ???? :) ????? ???????

?? ??????? ?????? ???? ????? 1.2 ?? ??? ???????? ??? 7

[?????] ????? Artodia Mobile ?????????? ????? ???

مرسل: الاثنين سبتمبر 19, 2011 1:47 am
بواسطة TheIlluminative
?? ????? .. ?????? ????? .. ?? ????? ?????? ????? ?????? ???? ????? ?????? ^_^
????? ???? ?????? ????? ?????? ??? ??? :lol:

[?????] ????? Artodia Mobile ?????????? ????? ???

مرسل: الاثنين سبتمبر 19, 2011 2:35 am
بواسطة golino
????? ????? ??? ???????

[?????] ????? Artodia Mobile ?????????? ????? ???

مرسل: الاثنين سبتمبر 19, 2011 4:39 am
بواسطة A.B.M.K
???? ????? ??? ????

???? ??? ??????? :
???????? ???? ???? ? ???? ? ?? ????? ??? ????? ??????? , ???? ??? ?? ???? ????? ??????? ???? ???? ??? ??? ?? ???????? ????????? ?? ???????? ?????????
??? ?????? ???? ????? ??? ????? ???? ??? ???? ???????? , ???? ??? ???? ????? ? ??? , ???? ??? ??? ??????? ??? ???? ????????? ??? ?? ???? ????? ?? ???

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

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

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

[?????] ????? Artodia Mobile ?????????? ????? ???

مرسل: الاثنين سبتمبر 19, 2011 5:52 am
بواسطة TheIlluminative
????? ????? ??????? ???? ???? ??? ?????? ????? ?????? ??? ???? ????? ??? ???? ???? :)
http://www.stylerstalk.com/forums

[?????] ????? Artodia Mobile ?????????? ????? ???

مرسل: الاثنين سبتمبر 19, 2011 5:35 pm
بواسطة Saif Alhak
????? golino ? A.B.M.K ??? ?????? ?????? ?????? ??? ???????

A.B.M.K كتب: ???????? ???? ???? ? ???? ? ?? ????? ??? ????? ??????? , ???? ??? ?? ???? ????? ??????? ???? ???? ??? ??? ?? ???????? ????????? ?? ???????? ?????????
??? ?????? ???? ????? ??? ????? ???? ??? ???? ???????? , ???? ??? ???? ????? ? ??? , ???? ??? ??? ??????? ??? ???? ????????? ??? ?? ???? ????? ?? ???
????? ???? ??????? ??????? ??????? ??? ????? ????? ?????????? ???? ??? ?? ???? ????? ?????????? ?????? ?????????? ??? ?? ???? ???? , ???? ???? ???? ????? ????? ???????? ?????
A.B.M.K كتب: ??? ??? ?????? ????? ? ??? ????? ??? ??????? ?? ???? ?????? ??????? , ??? ???? ??? ????? ??? ???? ?? ??????? ? ??? ????? ???? ??? ????? ???? ?? ???? ???? ???
??????? ???? ???? ????? ??? ????? ????? ???????? ?? ??????? ??? ???? ?????? ???? ?????
A.B.M.K كتب: ?? ???? ? ??? ??? ?????? ??????? ?? ??? ???? , ??? ???????? ?? ????? ???? ??? ????? ?????? ??????? ??????
??????? ?????? ???? ?????? ????? ????? ???????? ?????? ???????? ?????? ??? ??? ????

[?????] ????? Artodia Mobile ?????????? ????? ???

مرسل: الثلاثاء سبتمبر 20, 2011 2:54 am
بواسطة A.B.M.K
??????? ?????? ???? ?????? ????? ????? ???????? ?????? ???????? ?????? ??? ??? ????
? ??? ????? ?? ?????? ?????? ????? ???? ?? ??????? , ????? ??? ??? ???? ???? ??? ????? ????? ???? ? ?? ?? ??? ??? ????? ??????

??? ??????? ??? ? ??? ????? ???? ?????? ?? ????????? ?? ????? !

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

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

[?????] ????? Artodia Mobile ?????????? ????? ???

مرسل: الثلاثاء سبتمبر 20, 2011 4:49 am
بواسطة Saif Alhak
A.B.M.K كتب:
??????? ?????? ???? ?????? ????? ????? ???????? ?????? ???????? ?????? ??? ??? ????
? ??? ????? ?? ?????? ?????? ????? ???? ?? ??????? , ????? ??? ??? ???? ???? ??? ????? ????? ???? ? ?? ?? ??? ??? ????? ??????

??? ??????? ??? ? ??? ????? ???? ?????? ?? ????????? ?? ????? !

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

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

?????? ????? ????? !! :lol: :mrgreen:
001001.png
??? ?? ???? ??????? ???? ???? ????? ??? ???? ???? ????? ?? ???? ???

[?????] ????? Artodia Mobile ?????????? ????? ???

مرسل: الثلاثاء سبتمبر 20, 2011 5:40 am
بواسطة A.B.M.K
??????? ???? ? ??? ???? ???? ??????? ??????

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

?? ??? ?????? ?????? ???? ?? ?????? ??? :)

[?????] ????? Artodia Mobile ?????????? ????? ???

مرسل: الثلاثاء سبتمبر 20, 2011 5:51 am
بواسطة Saif Alhak
??? ???? ???? ?????? ??? ??? TheIlluminative
http://www.stylerstalk.com/forums
?? ??????? ????? ??????? ???????? ??? ???? ?? ????? ?? ??????? ?? ?? ???????