صفحة 1 من 1

(????)??? ???? ???? ????? !

مرسل: الاثنين يونيو 30, 2008 2:10 am
بواسطة zero10020
??? ???? ?????? ??????

??? ???? ???? ???? ????? ???? ???? ?? ????????? ?? ????? ???? ???? ????? ??? ?? ????? ??? ???? ?????? ??? ?? ??? ??? ??????? ???? ???? ???? ????? :roll: ???? ????? ???? ??????? ! ??????? ?????


______________________________________________
???? ????? ??? ????? ?? ???????? ????? ????? ?? ??? ?????

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

مرسل: الاثنين يونيو 30, 2008 3:50 am
بواسطة Garebooo
?? ????? ?? phpbb2 ?? phpbb3 ?

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

مرسل: الاثنين يونيو 30, 2008 5:45 am
بواسطة zero10020
???? ???? ??????? ?? ???? ?? ????? ????

phpbb3
:arrow:

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

مرسل: الاثنين يونيو 30, 2008 6:01 pm
بواسطة TheIlluminative
????? ?? ?? ???????..

?? ???? ??????? ???? ????????? ??? ???? ?? ???? ??? .php ???? ? ?? ?? ??????

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


<?php
define('IN_PHPBB', true);
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);

// Start session management
$user->session_begin();
$auth->acl($user->data);
$user->setup();

page_header('Title Here');

$template->set_filenames(array(
    'body' => 'yourpage_body.html',
));

make_jumpbox(append_sid("{$phpbb_root_path}viewforum.$phpEx"));
page_footer();
?>
???? Title Here ??? ????? ?????? ???? ???? ?? ???????? ? yourpage_body.html ???? ??? ??????? ???? ???? ?????? ???? ??????..

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

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

$user->setup();     
? ???????? ?

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

$user->setup('base-name-of-language-file-here');     
? ???? base-name-of-language-file-here ???? ??? ????? ???? ???????? ???? ????? ???????? .php ???? ?? ??? ?? ?????? ??? ??? ??? ??? ??? ???? ??????..

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

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

$user->setup();
? ??? ????

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

if ($user->data['user_id'] == ANONYMOUS)
{
    login_box('', $user->lang['LOGIN']);
}
? ???? ???? ??? ??? ??????? yourpage_body.html (?? ????? ???? ?????? ????)
????? ? ???? ?? ????? ??????

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


<!-- INCLUDE overall_header.html -->

<h2>Title Here</h2>

<div class="panel">
   <div class="inner"><span class="corners-top"><span></span></span>

   <div class="content">
      <p>
         Content in here.
      </p>
   </div>

   <span class="corners-bottom"><span></span></span></div>
</div>

<!-- INCLUDE jumpbox.html -->
<!-- INCLUDE overall_footer.html -->
???? Title Here ???? ?????? ? ??? ??? ??? ??????? ?????? ???? ?? Content in here.