##############################################################
## MOD Title: Custom Title MOD Templates Only - subSilver
## MOD Author: Aexoden < gerek@softhome.net > (Jason Lynch) http://www.aexoden.com
## MOD Description: Adds a custom title field to a user's profile, and displays it next to their posts and in their profile.
##		    Can be configured to only activate after a certain number of days and/or posts.  A custom title 
##		    can also be manually activated or disabled by an administrator. 
## MOD Version: 1.0.2
##
## Installation Level: Advanced
## Installation Time: 1 Minute using EM
## Files To Edit: 5:  
##                    templates/subSilver/admin/board_config_body.tpl 
##                    templates/subSilver/admin/user_edit_body.tpl 
##                    templates/subSilver/profile_add_body.tpl 
##                    templates/subSilver/profile_view_body.tpl 
##                    templates/subSilver/viewtopic_body.tpl 
## Included Files: 0
##############################################################
## For Security Purposes, Please Check: http://www.phpbb.com/mods/ for the
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code
## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered
## in our MOD-Database, located at: http://www.phpbb.com/mods/
##############################################################
## Author Notes: Please see the accompanying README_FIRST.txt for VERY important information.
##
##############################################################
## MOD History:  Version history available in README_FIRST.txt. Future versions will see
##               information entered here for convenience.
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
############################################################## 
# 
#-----[ OPEN ]------------------------------------------ 
#
templates/subSilver/admin/board_config_body.tpl
# 
#-----[ FIND ]------------------------------------------ 
#
prune_enable
# 
#-----[ FIND ]------------------------------------------ 
#
</tr>
# 
#-----[ AFTER, ADD ]------------------------------------------ 
#
	<tr>
		<th class="thHead" colspan="2">{L_CUSTOM_TITLE_SETTINGS}</th>
	</tr>
	<tr>
		<td class="row1">{L_CUSTOM_TITLE_MODE}<br /><span class="gensmall">{L_CUSTOM_TITLE_MODE_EXPLAIN}</span></td>
		<td class="row2" nowrap="nowrap"> 
			<input type="radio" name="custom_title_mode" value="0" {CUSTOM_TITLE_MODE_INDEPENDENT} />{L_CUSTOM_TITLE_MODE_INDEPENDENT}&nbsp;
			<input type="radio" name="custom_title_mode" value="1" {CUSTOM_TITLE_MODE_REPLACE_RANK} />{L_CUSTOM_TITLE_MODE_REPLACE_RANK}&nbsp;
			<input type="radio" name="custom_title_mode" value="2" {CUSTOM_TITLE_MODE_REPLACE_BOTH} />{L_CUSTOM_TITLE_MODE_REPLACE_BOTH}
		</td>
	</tr>
	<tr> 
		<td class="row1">{L_CUSTOM_TITLE_DAYS}</td> 
		<td class="row2"><input type="text" name="custom_title_days" value="{CUSTOM_TITLE_DAYS}" /></td> 
	</tr> 
	<tr> 
		<td class="row1">{L_CUSTOM_TITLE_POSTS}</td> 
		<td class="row2"><input type="text" name="custom_title_posts" value="{CUSTOM_TITLE_POSTS}" /></td> 
	</tr>
	<tr> 
		<td class="row1">{L_CUSTOM_TITLE_MAXLENGTH}<br /><span class="gensmall">{L_CUSTOM_TITLE_MAXLENGTH_EXPLAIN}</span></td> 
		<td class="row2"><input type="text" name="custom_title_maxlength" value="{CUSTOM_TITLE_MAXLENGTH}" /></td> 
	</tr>
# 
#-----[ OPEN ]------------------------------------------ 
#
templates/subSilver/admin/user_edit_body.tpl
# 
#-----[ FIND ]------------------------------------------ 
#
interests
# 
#-----[ FIND ]------------------------------------------ 
#
</tr>
# 
#-----[ AFTER, ADD ]------------------------------------------ 
#
	<tr> 
	  <td class="row1"><span class="gen">{L_CUSTOM_TITLE}</span></td> 
	  <td class="row2"> 
		<input class="post" type="text" name="custom_title" size="35" maxlength="255" value="{CUSTOM_TITLE}" /> 
	  </td> 
	</tr> 
	<tr> 
	  <td class="row1"><span class="gen">{L_CUSTOM_TITLE_STATUS}</span></td> 
	  <td class="row2"> 
		<input type="radio" name="custom_title_status" value="0" {CUSTOM_TITLE_STATUS_REGDATE} />&nbsp; 
		<span class="gen">{L_CUSTOM_TITLE_STATUS_REGDATE}</span>&nbsp;&nbsp; 
		<input type="radio" name="custom_title_status" value="1" {CUSTOM_TITLE_STATUS_DISABLED} />&nbsp; 
		<span class="gen">{L_CUSTOM_TITLE_STATUS_DISABLED}</span>&nbsp;&nbsp; 
		<input type="radio" name="custom_title_status" value="2" {CUSTOM_TITLE_STATUS_ENABLED} />&nbsp; 
		<span class="gen">{L_CUSTOM_TITLE_STATUS_ENABLED}</span> 
	  </td> 
	</tr>
# 
#-----[ OPEN ]------------------------------------------ 
#
templates/subSilver/profile_add_body.tpl
# 
#-----[ FIND ]------------------------------------------ 
#
{INTERESTS}
# 
#-----[ FIND ]------------------------------------------ 
#
</tr>
# 
#-----[ AFTER, ADD ]------------------------------------------ 
#
	<!-- BEGIN switch_custom_title --> 
	<tr> 
	  <td class="row1"><span class="gen">{L_CUSTOM_TITLE}:</span><br /><span class="gensmall">{L_CUSTOM_TITLE_EXPLAIN}</span></td> 
	  <td class="row2"> 
		<input type="text" class="post"style="width: 200px"  name="custom_title" size="45" maxlength="{CUSTOM_TITLE_MAXLENGTH}" value="{CUSTOM_TITLE}" /> 
	  </td> 
	</tr> 
	<!-- END switch_custom_title --> 
# 
#-----[ OPEN ]------------------------------------------ 
#
templates/subSilver/profile_view_body.tpl
# 
#-----[ FIND ]------------------------------------------ 
#
{AVATAR_IMG}
# 
#-----[ IN-LINE FIND ]------------------------------------------ 
#
<span class="postdetails">
# 
#-----[ IN-LINE AFTER, ADD ]------------------------------------------ 
#
<strong>{CUSTOM_TITLE}</strong>

# 
#-----[ OPEN ]------------------------------------------ 
#
templates/subSilver/viewtopic_body.tpl
# 
#-----[ FIND ]------------------------------------------ 
#
{postrow.POSTER_NAME}
# 
#-----[ IN-LINE FIND ]------------------------------------------ 
#
<span class="postdetails">
# 
#-----[ IN-LINE AFTER, ADD ]------------------------------------------ 
#
<strong>{postrow.CUSTOM_TITLE}</strong>

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