أهلا وسهلا بك إلى فكك مني Fokak Meny.
  • تسجيل الدخول:

لا إله إلا أنت سبحانك إني كنت من الظالمين

اللهم اعطنا القوة لندرك أن الخائفين لا يصنعون الحرية ، و الضعفاء لا يخلقون الكرامة ، و المترددين لن تقوى أيديهم المرتعشة على البناء

- الإهدائات >> فراشة الاسلام الي فكك منى : المنتدى وحشنى اوووووووووووووووووووى رغم الفضاء والتصحر ده كوكى الي مصطفى شومان : انت فين يا ابنى انت انا جيييييييييييييت ده لو انت فاكرنى اصلا؟؟؟؟ فراشة الاسلام الي اعضاء منتدى فكك منى : كل سنة وانتوا طيبين وعيد سعيد عليكوا Mannora الي اصحااااااااااااب زمااان : مس يووووووووووووووو فينيام زمان كنا بنذاكر ع فكك ونطبق يوميا يخرب بيت الفيس بقى مجهول الي fokakmeny_down : منتدى ثقيل دم موووو حلووو أستغفر الله العظيم لولا الي كل المنتدى : وحشتونى وحشتونى وحشتونى وكل سنة وانتم طيبين وبخير همسة الي فكك منى : وحشتنى يا منتدايا الغالى , سلامى لكل الناس اللى موجوده وبالأخص صحابى ,فكك منى 2007 و 2008 كان بيتنا وجنتنا. فراشة الاسلام الي كل اعضاء فكك منى : اووووووووووف الدراسة تانى مش هخلص انا شكلى باااااااااااااااى باااااااااااى فكك منى فراشة الاسلام الي كل كل اعضاء منتدى فكك منى : احلفكوا بأيه فوووووووقوا شوية .......حرام عليكم المنتدى عفن من كتر الركنة الشبح الي كل اعضاء فكك منى : لقد عاد شبح المنتدى من اراد منك شئ فليطلبة منى

معلومات الموضوع

تحميل هاك Tutorial Hide Text And Code From Usergroups Vb3.8.X مجانا

رابط الموضوع لارساله الى اصدقائك
https://fokakmeny.fokak.us/showthread.php?t=26158

النتائج 1 إلى 2 من 2
  1. #1
    صاحب الموقع
    الصورة الرمزية Silent Guardian

    رقم العضوية : 1
    تاريخ التسجيل : Jun 2007
    المشاركات : 8.277
    مزاجي : Cynical
    شكراً : 35
    تم شكره 21 مرة في 20 مشاركة
    مقالات المدونة : 15
    الدولة : في بيتنا
    الجنس : راجل
    العمر : 36
    بيانات الاتصال :
    تابعني : أضفنى الى الفيس بوك قم بزيارتى على اليوتيوب تابعنى على تويتر
    الحالة : Silent Guardian غير متواجد حالياً
    تقييم المستوى : 10
    Array

    افتراضي تحميل هاك Tutorial Hide Text And Code From Usergroups Vb3.8.X مجانا

    Tutorial Hide Text And Code From Usergroups

    Tutorial Hide Text And Code From Usergroups

    Description:
    This hack will allow you to specify which usergroups can view "code" (PHP, HTML and CODE bbCodes).

    To Install:
    Read the supplied install instructions. Even though there are 6 template edits, they are done automatically. Posts you have already made that contain code in them will NOT show the changes because they are already cached. You have a few options with this:

    How it works:

    vBulletin caches posts. What this means is, instead of parsing the bbCode templates each time, it will do it once per style and store the output in the database. This completely kills any chance you have of putting usergroup conditions inside of these templates.

    The first step was to prevent vBulletin from caching posts which contain these tags, so in the showthread_postbit_create hook, I created the following plugin

    PHP Code:
    if (!isset($posts_cachable))
    {
    $posts_cachable = $post_cachable;
    }

    $post_cachable = ((
    strpos($post['pagetext'], '{php}') !== false or
    strpos($post['pagetext'], '{code}') !== false or
    strpos($post['pagetext'], '{html}') !== false
    ) ? false : $posts_cachable
    );


    vBulletin has the variable "$post_cachable" which basically checks for the whole thread(!) if posts are cachable. Not very helpful to us... So this plugin first makes a new variable ($posts_cachable) and sets it to whatever the $post_cachable variable is set to. Only once.

    The next block uses the ternary operator (cleaner to read for me) and basically checks if those 3 bbcodes are found in the currently processing post. If any are found, it will set the $post_cachable variable to false so it will bypass the caching procedure for this post. If none of the 3 are found, it will fall back to that other variable I created (the original value of $post_cachable).

    I am checking if it exists inside the post by using the strpos() function, which returns the position of the needle inside the haystack if it is found (integer) or FALSE if it isn't. We can't use a single if (!...) check because it may return 0 if its at the very beginning which evaulates to false. So we can check if not exactly equal to false by using !==

    Note that I'm not using strstr() because this is much faster. This could could probably be improved using a regular expression or another function, because it's case sensitive.

    The next step was to determine who can view the code. Using the global_start hook, I created the following plugin:

    PHP Code:
    if ($vbulletin->options['hidecode_groups'])
    {
    $showCodeGroups= explode(' ', $vbulletin->options['hidecode_groups']);
    $show['hidecode'] = !is_member_of($vbulletin->useinfo, $showCodeGroups);
    }
    else
    {
    $show['hidecode'] = false;
    }


    Since we only want this to run when the admin has entered any usergroups, we will wrap it inside an if so this happens. Using the explode() function we can convert the space-seperated-list into an array, which is must easier to work with. Now that we have an array, we can vBulletin's is_member_of() function which returns TRUE if you are a primary or secondary member of any of the groups, and FALSE if you aren't. Since I put a ! (NOT) in front of the function, it will return the opposite. I am setting the variable $show['hidecode'] to the return value of that whole statement, which in this case is TRUE if the code should be hidden (if you aren't in the usergroups) and FALSE if you can see it.

    Finally, in all of the templates (the edits were done automatically), each $code variable is replaced with

    Code:
    You can't view code phrase$code
    which would check the variable to see if they can see it before attempting to show them anything.




    ملحوظة هامة جدا جدا جدا
    التحميل من موقعنا مبااااااااااااااااشر
    و لكن يتطلب منك ادخال اسم مستخدم و باسورد
    هذه هي بيانات التحميل

    اسم المستخدم
    fokakmeny_down
    كلمة المرور
    123456


    في حالة وجود خطأ لا تتردوا بالاتصال بنا قسم البريد

    او من نموذج الاتصال بنا


    Tutorial Hide Text And Code From Usergroups

    Tutorial Hide Text And Code From Usergroups

    Tutorial Hide Text And Code From Usergroups

  2. #2
    I ♥ Egypt
    الصورة الرمزية Spider GirL

    رقم العضوية : 427
    تاريخ التسجيل : Oct 2007
    المشاركات : 10.114
    مزاجي : Cold
    شكراً : 0
    تم شكره 0 مرة في 0 مشاركة
    مقالات المدونة : 3
    الدولة : النيل المصري
    الجنس : ذكر
    العمر : 36
    بيانات الاتصال :
    تابعني :
    الحالة : Spider GirL غير متواجد حالياً
    تقييم المستوى : 10
    Array

    افتراضي رد: تحميل هاك Tutorial Hide Text And Code From Usergroups Vb3.8.X مجانا

    شكرا مصطفى


 

معلومات الموضوع

الأعضاء الذين يشاهدون هذا الموضوع

الذين يشاهدون الموضوع الآن: 1 (0 من الأعضاء و 1 زائر)

     

المواضيع المتشابهه

  1. تحميل هاك code Separation sticky topics Vb3.8.X مجانا
    بواسطة Silent Guardian في المنتدى ركن تطوير منتديات الجيل الثالث vBulletin 3.8.X
    مشاركات: 12
    آخر مشاركة: 14-10-2012, 06:05 AM
  2. تحميل هاك VSA Chatbox AJAX Addon (New Posts/New Reply Notification) - NO FOOTER Text! مجانا
    بواسطة Silent Guardian في المنتدى ركن تطوير منتديات الجيل الرابع vBulletin 4.0.X
    مشاركات: 1
    آخر مشاركة: 02-05-2010, 10:19 AM
  3. تحميل هاك Hide What's going on from guests! مجانا
    بواسطة Silent Guardian في المنتدى ركن تطوير منتديات الجيل الرابع vBulletin 4.0.X
    مشاركات: 1
    آخر مشاركة: 16-04-2010, 12:24 PM
  4. تحميل استايل Change text direction in vBulletin 3.8.x Style مجانا
    بواسطة Silent Guardian في المنتدى استايلات الجيل الرابع vBulletin 4.0.X
    مشاركات: 2
    آخر مشاركة: 30-03-2010, 10:50 AM
  5. تحميل تصميم PLEASE Change This Text Please Lol للمنتديات مجانا
    بواسطة Silent Guardian في المنتدى جرافيك المنتديات و الواجهات و التصاميم الجاهزة
    مشاركات: 1
    آخر مشاركة: 27-03-2010, 07:07 PM

الأعضاء الذين قرأوا هذا الموضوع : 0

الإجراءات : (من قرأ ؟)

لم يشاهد الموضوع أي عضو حتى الأن.

مواقع النشر (المفضلة)

مواقع النشر (المفضلة)

ضوابط المشاركة

ضوابط المشاركة

  • لا تستطيع إضافة مواضيع جديدة
  • لا تستطيع الرد على المواضيع
  • لا تستطيع إرفاق ملفات
  • لا تستطيع تعديل مشاركاتك
  •  


Search Engine Friendly URLs by vBSEO ©2011, Crawlability, Inc.