################################################################################### 
## MOD Title:		Music Search Song (Music Online Mod by Cf Manager) 
## MOD Version:		1.0.0 (ex phpbb 2.0.8)
## MOD Author:		Cf Manager < cf_manager@yahoo.com > (Thai Thanh Son)
## Support:		http://cfmanager.net.tf
##
## Description:	 	This mod will help you find the song by Song Title, Singer 
##			or Song Poster quickly and esily.
##
## Compatibility:	2.0.4 --> 2.0.8 (I tested on phpBB 2.0.6 & 2.0.8)
##
## MOD Level:		VERY Easy!!!
## MOD Time:		5 min
## Files to edit:	3
##			language/lang_english/lang_main_music.php
##			music.php (optional)
##      	        templates/subSilver/music_index_body.tpl (optional)
##
## Included Files:	2
##			music_list.php
##			templates/subSilver/music_list_body.tpl
##
################################################################################### 
## Installation/Author Notes:
## 
## 	Full support for this MOD can be obtained at: http://cfmanager.net.tf 
## 	This MOD was tested with the following databases: MySQL
################################################################################### 
## MOD History:
## 		16/06/2004 v1.0.0: First Release ;)
###################################################################################
## This MOD is released under the GPL License.
###################################################################################
## BEFORE, ADDing This MOD To Your Forum, You Should Back Up All Files Related To This MOD
###################################################################################
###################################################################################
#
#-----[ COPY ]-------------------------------------------------------
#
COPY music_list.php to music_list.php
COPY templates/subSilver/music_list_body.tpl to templates/subSilver/music_list_body.tpl

###################################################################################
#
#-----[ OPEN ]------------------------------------------ 
#  
language/lang_english/lang_main_music.php

# 
#-----[ FIND ]------------------------------------------
# 
?>

# 
#-----[ AFTER, ADD ]-------------------------------------
#
//
// Search Song
//
$lang['Search_song'] = 'Search song';

#
#-----[ OPEN ]------------------------------------------ 
#  Below I will help you create the Music Search Block on Music Index Page 
music.php

# 
#-----[ FIND ]------------------------------------------
# 
	'L_PUBLIC_CATS' => $lang['Public_Categories'],

# 
#-----[ AFTER, ADD ]-------------------------------------
# 
	'L_SEARCH_SONGS' => $lang['Search_song'],


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

# 
#-----[ FIND ]------------------------------------------
# 
<!-- BEGIN switch_user_logged_out -->

# 
#-----[ BEFORE, ADD ]------------------------------------
# 
<form method="post" action="music_list.php">
  <table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline">
	<tr>
	  <td class="row1" align="center" height="28"><span class="gensmall">{L_SEARCH_SONGS} <input class="post" type="text" name="search" size="30" />&nbsp;&nbsp;	
		<select name="search_cond">
        	<option value='title'>{L_SONG_TITLE}</option>
        	<option value='singer'>{L_SINGER}</option>
        	<option value='poster'>{L_POSTER}</option>
      	</select> &nbsp;&nbsp; 
	<input type="submit" name="submit" value="{L_SEARCH}" class="liteoption" />
		</span> </td>
	</tr>
  </table>
</form>

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