صفحة 3 من 4

[???? ?????] ??? ??? 5 ?????? ????? ?? ???? ???????..

مرسل: الثلاثاء فبراير 03, 2009 5:29 am
بواسطة saanina
????? ???? ???? ???? ????? ????? ?? ..

---
?????? ??? ??????? ???? ?? ???? ??????? ?????? ?? ?? ????????? ..

[BETA] ??? ??? 5 ?????? ????? ?? ???? ???????..V1.2.0

مرسل: الجمعة إبريل 03, 2009 4:40 am
بواسطة الساحر
???? ??? saanina ??? ??? ???????
-----------------------------------------------------


?? ????? ????? ?????? 1.2.0 ??? ???? ??????? ???? ????

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

[BETA] ??? ??? 5 ?????? ????? ?? ???? ???????..V1.2.0

مرسل: الأحد إبريل 05, 2009 2:30 pm
بواسطة m55
???? ????? ????? ?? ??? ?????? ...

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

[BETA] ??? ??? 5 ?????? ????? ?? ???? ???????..V1.2.0

مرسل: الأحد إبريل 05, 2009 3:39 pm
بواسطة m55
???? ??? ???? ????? ???????? ?? ?????? ??? ?????? ...

?? ????? .

[BETA] ??? ??? 5 ?????? ????? ?? ???? ???????..V1.2.0

مرسل: الأحد إبريل 05, 2009 7:33 pm
بواسطة الساحر
m55 كتب:???? ??? ???? ????? ???????? ?? ?????? ??? ?????? ...

?? ????? .


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

??? ????? ??

http://wizardphp4.googlepages.com/last_ ... y_user.zip

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

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

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

[BETA] ??? ??? 5 ?????? ????? ?? ???? ???????..V1.2.0

مرسل: الأحد إبريل 05, 2009 8:55 pm
بواسطة m55
?? ??????? ??? ???? ..

???? ???? ..

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

[BETA] ??? ??? 5 ?????? ????? ?? ???? ???????..V1.2.0

مرسل: الأحد إبريل 05, 2009 10:08 pm
بواسطة FaresNB
?????? ?????

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

????? :

?? ??? ????? ????? ?? ????? ??? ??????? ???? ???? ?
??? ??? ??????? ????
http://forum.art-en.com

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

[BETA] ??? ??? 5 ?????? ????? ?? ???? ???????..V1.2.0

مرسل: الاثنين إبريل 06, 2009 3:13 am
بواسطة الساحر
Faresnb كتب:?????? ?????

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

????? :

?? ??? ????? ????? ?? ????? ??? ??????? ???? ???? ?
??? ??? ??????? ????
http://forum.art-en.com

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



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

??? ???? ??? ????? ????? ??????? ??? ???? ?? phpbb ?? ???? ????????

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

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

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

[BETA] ??? ??? 5 ?????? ????? ?? ???? ???????..V1.2.0

مرسل: الاثنين إبريل 06, 2009 3:01 pm
بواسطة (M)
صورة

???? ???? ??? ??? ?????? ???? ????? , ?????? ????? ?????? ??? ??????? ?? ??????? ??? ???? ????? :)

??? ?? ?????? ???????? ??????? ?????? ????? ?? ?? ????? ?????? ???? ??? viewtopic.php

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

   ///////////////   last topic by user
   $limit_lt = 10;
   $noflt = array(500,600);
   $sql = 'SELECT t.topic_title, t.forum_id, p.topic_id, p.post_time
          FROM ' . TOPICS_TABLE . ' t
          LEFT JOIN ' . POSTS_TABLE . ' as p ON (p.post_time = t.topic_time)
          WHERE NOT ' . $db->sql_in_set('t.forum_id', $noflt) . '
          AND t.topic_poster = ' . $poster_id . '
          ORDER BY t.topic_id DESC';
   $result_lt = $db->sql_query_limit($sql, $limit_lt);

   while ($row_lt = $db->sql_fetchrow($result_lt))
   {
      $template->assign_block_vars('postrow.postrowy', array(
         'TITLE'      => $row_lt['topic_title'],
         'U_TOPIC'   => append_sid("{$phpbb_root_path}viewtopic.$phpEx", "f={$row_lt['forum_id']}&t={$row_lt['topic_id']}"),
      ));
   }
   $db->sql_freeresult($result_lt);
   unset($result_lt);
   //////////////////// last topic by user


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

http://www.mssti.com/phpbb3/viewtopic.php?p=3694#p3694

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

// last topic by user - Fixed by MSSTI - Start
   $lt_forum_ary = array();
   $lt_forum_read_ary = array();

   // Do not include those forums the user is not having read access to...
   $lt_forum_read_ary = $auth->acl_getf('!f_read');
   foreach ($lt_forum_read_ary as $lt_forumid => $lt_not_allowed)
   {
      if ($lt_not_allowed['f_read'])
      {
         $lt_forum_ary[] = (int) $lt_forumid;
      }
   }

   $lt_forum_ary = array_unique($lt_forum_ary);
   $lt_forum_sql = (sizeof($lt_forum_ary)) ? ' AND ' . $db->sql_in_set('t.forum_id', $lt_forum_ary, true) : '';

   $lt_limit = 5;
   $sql = 'SELECT t.*, p.topic_id, p.poster_id, p.post_time, p.post_subject, p.post_id
         FROM ' . TOPICS_TABLE . ' t
            LEFT JOIN ' . POSTS_TABLE . " p ON (p.post_time = t.topic_time)
         WHERE t.topic_poster = $poster_id " . " $lt_forum_sql
         ORDER BY t.topic_id DESC";
   $lt_result = $db->sql_query_limit($sql, $lt_limit);

   while ($lt_row = $db->sql_fetchrow($lt_result))
   {
      $template->assign_block_vars('postrow.postrowy', array(
         'POST_SUB'      => $lt_row['topic_title'],
         'U_MINI_POST'   => append_sid("{$phpbb_root_path}viewtopic.$phpEx", "f={$lt_row['forum_id']}&t={$lt_row['topic_id']}"),
      ));
   }
   $db->sql_freeresult($lt_result);
   unset($lt_result, $lt_forum_ary, $lt_forum_read_ary, $lt_forum_sql);
// last topic by user - Fixed by MSSTI - End


??? ?????? : $noflt = array(500,600); ?????? ???? ???? ??????? ????????

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

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

  $lt_forum_ary = array();
   $lt_forum_read_ary = array();

   // Do not include those forums the user is not having read access to...
   $lt_forum_read_ary = $auth->acl_getf('!f_read');
   foreach ($lt_forum_read_ary as $lt_forumid => $lt_not_allowed)
   {
      if ($lt_not_allowed['f_read'])
      {
         $lt_forum_ary[] = (int) $lt_forumid;
      }
   }

   $lt_forum_ary = array_unique($lt_forum_ary);
   $lt_forum_sql = (sizeof($lt_forum_ary)) ? ' AND ' . $db->sql_in_set('t.forum_id', $lt_forum_ary, true) : '';


??? ?? ??????? : array(500,600 ?? ?????? ?? ?? ?????? ???????? ???????? ??? ?? ?????? ?? ???????

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

[BETA] ??? ??? 5 ?????? ????? ?? ???? ???????..V1.2.0

مرسل: الاثنين إبريل 06, 2009 6:18 pm
بواسطة الساحر
???? ?? ??? (M)

?????? ?? ?? ????? ??? ??? :oops:

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

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

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

??? ?????
$noflt = array(500,600);

??? ??? ????? ???? ???? ??? ???????? ???? ????????? ???? ????? 500 ? 600 :lol:

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

??? ?????? 500 ? 600 ?????? ????????? ?? ???? ??? ????????
????? ??? ?? ??? ?????? ","


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

[BETA] ??? ??? 5 ?????? ????? ?? ???? ???????..V1.2.0

مرسل: الاثنين إبريل 06, 2009 6:52 pm
بواسطة (M)
???? ???? ?? ??? ?????? ??? ?????? ???? ???? ?? ?? ?? ???

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

???? ??? ???? ?????? ?????? ????? ??? ????? ???? ???? ???????? ????? ?? ????? ???BB

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

????? ??????

[BETA] ??? ??? 5 ?????? ????? ?? ???? ???????..V1.2.0

مرسل: الاثنين إبريل 06, 2009 7:10 pm
بواسطة الساحر
???? ??? ?? ?????? ??????? ??? ?????? ?? ?? ????

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

[BETA] ??? ??? 5 ?????? ????? ?? ???? ???????..V1.2.0

مرسل: الاثنين إبريل 06, 2009 7:14 pm
بواسطة (M)
???? ???? ??? ????? ?? ?? ?????

[BETA] ??? ??? 5 ?????? ????? ?? ???? ???????..V1.2.0

مرسل: الثلاثاء إبريل 07, 2009 2:10 am
بواسطة kh_daun
????? ??? ??? ????? ??? ????? ???? ????? ??? ?? ??? ???????
??????

[BETA] ??? ??? 5 ?????? ????? ?? ???? ???????..V1.2.0

مرسل: الجمعة إبريل 10, 2009 6:41 pm
بواسطة FaresNB
?????? ?????

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

??? ???? ? ???? ???? ????? ?????? ?? ???????? , ????? ?? ??? ???? ??????? ??? ??????? ????? ????? ??? ??????? ??? ???? 35 ? 40 , ?????? ??? ????? ?? ????? :(

???? ?? ??? ?????? ??? ??????? .... ? ???? ??? ???? ??? ????? ????? ??? ??? ????? ????????? ??? ???????? ??????? ??? ????? ?? ??????? vb
??? ?? ??????? ??? ?? ?????? ?????? ??? ???????