############################################################## 
## MOD Title:           ImageShack Upload Panel MOD - SQR Add-on
## MOD Author:          NightriderXP < phpBB@4fxearth.net > (N/A) http://4fxearth.net/phpBB2
## MOD Description:     Upload images to free image hosting server (ImageShack.us) directly while
##                      posting or sending PMs. Server returns BBCode enabled links (ready to be
##                      pasted in your messages) that hotlink to your images. How-To Instructions
##                      for users added to the board FAQs. Links to manage images on remote server
##                      and complete upload interface are fully integrated to posting_body.tpl 
##
## MOD Version:         1.0.0
##
## Installation Level:  Easy
## Installation Time:   ~5 Minutes ( 1 Minute w/EasyMod )
##
## Files To Edit:       2
## 		 				image_shack.php
##						templates/subSilver/viewtopic_quickreply.tpl                      
##
## Included Files:      0
##
## 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: 
##                 DEMO @ http://4fxearth.net/phpBB2
##                      + http://mods.DanielSchaad.com
##
############################################################## 
##
## MOD History:
##
##   2005-08-26 - Version 1.2.0 
##      - added *.tpl file + did complete rewrite
##      - added reset button + signup/manage link
##      - added How-To Instructions to board FAQs
##      - added full template/style compatibility
##      - disabled remote linking of upload panel
## 
##   2005-07-28 - Version 1.0.0 
##      - creation date			
##
############################################################## 
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
##############################################################
# 
#-----[ OPEN ]------------------------------------------ 
#
includes/viewtopic_quickreply.php

# 
#-----[ FIND ]------------------------------------------ 
#
'L_NOTIFY_ON_REPLY' =>

# 
#-----[ AFTER, ADD ]------------------------------------------ 
#

// BEG: ImageShack Upload Panel MOD
	'ISUP_TITLE' => $lang['Isup_title'],
	'ISUP_HOWTO' => sprintf($lang['Isup_howto'], '<a href="' . append_sid("faq.$phpEx") . '" target="_blank">', '</a>'),
	'ISUP_MANAGE' => sprintf($lang['Isup_manage'], '<a href="http://reg.imageshack.us/v_images.php" target="_blank">', '</a>'),
	'U_ISUP_PANEL' => append_sid("image_shack.$phpEx"),
// END: ImageShack Upload Panel MOD

# 
#-----[ OPEN ]------------------------------------------ 
#
templates/subSilver/viewtopic_quickreply.tpl

# 
#-----[ FIND ]------------------------------------------ 
#
<!-- BEGIN switch_advanced_qr -->
<tr>
{L_OPTIONS}
# 
#-----[ BEFORE, ADD ]------------------------------------------ 
#
<!-- BEGIN switch_user_logged_in -->
	<tr>
	  <td class="row1" valign="middle" nowrap="nowrap">
	  <span class="genmed"><b>{ISUP_TITLE}</b></span><br />
	  <span class="gensmall">{ISUP_HOWTO}<br />{ISUP_MANAGE}</span></td>
	  <td class="row2" valign="middle" nowrap="nowrap">
	  <iframe src="{U_ISUP_PANEL}" allowtransparency="true" scrolling="no" noresize="noresize" border="0" framespacing="0" frameborder="0" width="100%" height="40" nowrap="nowrap">{ISUP_NO_IFRAME}</iframe></td>
	</tr>
<!-- END switch_user_logged_in -->

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