هاكWelcome on Index

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

المشرف: alhitary

صورة العضو الرمزية
StarNet
عضو جديد
عضو جديد
مشاركات: 72
اشترك في: الثلاثاء يوليو 10, 2007 6:16 pm
مكان: الدار البيضاء - المغرب

???Welcome on Index

مشاركةبواسطة StarNet » الأحد سبتمبر 16, 2007 6:01 pm

??? ?????: Welcome on Index
??????: cherokee red
??? ?????: Shows a welcome message on the index page. If the member is registered/logged in, it will show the username - which will also be a link to the users profile. If the user is not logged in/registered, then they will be invited to register on the forums.
page

MOD Version: 1.0.4b (Updated 05/07/06)

Download File: woi104b.zip

File Size: 5293 Bytes

Security Score: 0

Support for this MOD needs to be asked within this topic. The phpBB Teams are not responsible or required to give anyone support for this MOD. By installing this MOD, the phpBB Support Team or phpBB MODifications Team may not be able to provide support.

This MOD has only been tested by the phpBB MOD Team with the phpBB version in the topic title. It may not work in any other versions of phpBB.

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




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

مشاركةبواسطة مهند قمرة » الأحد سبتمبر 16, 2007 10:09 pm

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

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

????? ????

مشاركةبواسطة مهند قمرة » الأحد سبتمبر 16, 2007 10:24 pm

صورة

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

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

##############################################################
##??? ?????: ??????? ?? ????????
## ??????: cherokee red
## ??? ?????: ???? ???? ????? ??????? ????? ???? ???? ?????? ?????? ???????? ?? ???? ???? ????? ????? ??????. ???? ?? ??? ????? ?????? ?????? ????? ????? ????? ??????? ?? ?????????.
## ???? ?????: 1.0.4
## ????? ?????: ???
## ??? ???????: 3 ?????
## ??????? ??????? ???????: templates/subSilver/index_body.tpl
##         index.php
##         language/lang_english/lang_main.php
## ??????? ???????: n/a
## ?????: ???? ????
## ????? ?????: StarNet
##############################################################
## MOD Title: Welcome on Index
## MOD Author: cherokee red < mods@cherokeered.co.uk > (Kenny Cameron) http://www.cherokeered.co.uk
## MOD Description: Shows a welcome message on the index page. If the member is registered/logged in, it will show the username - which will also be a link to the users profile. If the user is not logged in/registered, then they will be invited to register on the forums.
page :)
## MOD Version: 1.0.4b
##
## Installation Level: Easy
## Installation Time: ~3 Minutes
## Files To Edit: templates/subSilver/index_body.tpl
##         index.php
##         language/lang_english/lang_main.php
## Included Files: n/a
## License: http://opensource.org/licenses/gpl-license.php GNU General Public License v2
##############################################################
## For security purposes, please check: http://www.phpbb.com/mods/
## for the latest version of this MOD. Although MODs are checked
## before being allowed in the MODs Database there is no guarantee
## that there are no security problems within the MOD. No support
## will be given for MODs not found within the MODs Database which
## can be found at http://www.phpbb.com/mods/
##############################################################
## Author Notes:
##
## To upgrade this MOD from previous version, please see the upgrade file in the contrib folder :)
##
## Dutch Language support can also be found there
##
##############################################################
## MOD History:
##
##   2004-10-03 - Version 1.0.0
##      - mod created
##
##   2004-10-03 - Version 1.0.1
##      - mod updated: missing semi-colon's added in
##
##   2004-10-03 - Version 1.0.2
##      - mod updated: link output in address bar fixed. was showing 'profile&2' instead of 'profile&u=2'
##
##   2004-10-03 - Version 1.0.3
##      - mod updated: speprate messages now show for guests and registered users. Also typo in 'files to edit' list fixed (~Romil). Also added Dutch and German language support, which can be found in the contrib folder (TKF2).
##
##   2006-04-29 - Version 1.0.4
##      - mod updated: small bug in the guest register link
##   - changed the guest message text/layout
##   - updated Dutch language support (TKF2/cherokee red)
##
##   2006-05-05 - Version 1.0.4b
##      - mod updated: minor text/template edits
##   - fixed extra '&' in register link (1.0.4a)
##   - fixed register link to comply with MOD standards ( POST_USERS_URL )
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################
#
#-----[ ???? ]------------------------------------------
#
index.php
#
#-----[ ???? ?? ]------------------------------------------
#
      'body' => 'index_body.tpl')
   );
#
#-----[ ??? ???? ]------------------------------------------
#

// Welcome on Index - cherokee red
if ($userdata['user_id'] != '-1')
{
    $welcome_reg = '<b><a href="' . append_sid("profile.$phpEx?mode=editprofile&amp;" . POST_USERS_URL . "=" . $userdata['user_id']) . '">' . $userdata['username'] . '</a></b>';
}
else
{
    $welcome_guest = '<a href="' . append_sid("profile.$phpEx?mode=register") . '">' . $lang['Welcome_Register'] . '</a>';
}

#
#-----[ ???? ?? ]------------------------------------------
#
      'FORUM_LOCKED_IMG' => $images['forum_locked'],
#
#-----[ ??? ???? ]------------------------------------------
#

      'L_WELCOME_REG' => $lang['Welcome'],
      'U_WELCOME_REG' => $welcome_reg,
      'L_WELCOME_GUEST' => $lang['Welcome2'],
      'U_WELCOME_GUEST' => $welcome_guest,
#
#-----[ ???? ]------------------------------------------
#
templates/subSilver/index_body.tpl
#
#-----[ ???? ?? ]------------------------------------------
#
<table width="100%" cellspacing="0" cellpadding="2" border="0" align="center">
#
#-----[ ??? ???? ]------------------------------------------
#
 
<tr>
   <!-- BEGIN switch_user_logged_in -->
   <td><span class="gen">
   {L_WELCOME_REG} {U_WELCOME_REG}<br />
   </td>
   <!-- END switch_user_logged_in -->

   <!-- BEGIN switch_user_logged_out -->
   <td><span class="gen">
   {L_WELCOME_GUEST} {U_WELCOME_GUEST}<br />
   </td>
   <!-- END switch_user_logged_out -->
</tr>

#
#-----[ ???? ]------------------------------------------
#
language/lang_english/lang_main.php
#
#-----[ ???? ?? ]------------------------------------------
#
$lang['Forums_marked_read'] = 'All forums have been marked read';
#
#-----[ ??? ???? ]------------------------------------------
#

$lang['Welcome'] = "<b>Thanks for logging in </b>";
$lang['Welcome2'] = "<b>Welcome Guest, have you thought about </b>";
$lang['Welcome_Register'] = "<b>Registering?</b>";

#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM


????? ?? StarNet ?????? ?????

???????? ?? ???????? ??? ????? ?????? ?????? ???????
صورة
ليس لديك الصلاحية لمشاهدة المرفقات
آخر تعديل بواسطة مهند قمرة في الأحد سبتمبر 16, 2007 10:45 pm، تم التعديل مرتين في المجمل.
سأعود قريبا لعالمي في ارابيا :)
-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
صورة

صورة العضو الرمزية
hpnhwt
عضو جديد
عضو جديد
مشاركات: 97
اشترك في: الأحد أغسطس 05, 2007 2:58 pm

????? ????

مشاركةبواسطة hpnhwt » الأحد سبتمبر 16, 2007 10:42 pm

????? ????? ???ی? ? ?ی? ????????

:lol:

???? ??

صورة العضو الرمزية
StarNet
عضو جديد
عضو جديد
مشاركات: 72
اشترك في: الثلاثاء يوليو 10, 2007 6:16 pm
مكان: الدار البيضاء - المغرب

مشاركةبواسطة StarNet » الثلاثاء سبتمبر 18, 2007 8:44 pm

???? ?? ??? ??? ??????? ?????? ?? ???????? ??? ????? ?????? ?????? :D

صورة العضو الرمزية
forsyria
عضو جديد
عضو جديد
مشاركات: 16
اشترك في: الخميس ديسمبر 27, 2007 12:03 pm

???Welcome on Index

مشاركةبواسطة forsyria » الثلاثاء يناير 15, 2008 10:37 am

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

the shadow
مشرف سابق
مشرف سابق
مشاركات: 763
اشترك في: الاثنين يونيو 20, 2005 8:30 pm
مكان: keyboard
اتصال:

???Welcome on Index

مشاركةبواسطة the shadow » الأربعاء يناير 16, 2008 8:11 pm

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


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

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

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