######################################################################################### 
## MOD Title: Radio Status Mod 
## MOD Author: UseLess < your_email > (your_real_name) your_url 
## MOD Traductor: reef_01 - http://www.piratesdelcaribe.com.ar/foro/index.php 
## MOD Description: Consigue el estado en lnea de una estacin de emisin de radio 
## MOD Version: 1.0.3 
## 
## Installation Level: (Facil) 
## Installation Time: 10 MinutOs 
## Files To Edit: 2
##	        	index.php
##			templates/subSilver/index_body.tpl
##
## Included Files: 3
##			includes/radio_status.php
##			includes/shoutcastinfo.php
##			templates/subSilver/radio_body.tpl
##
######################################################################################### 
## Author Notes: 
##	No olvides editar 'includes/radio_status.php' y fijar el Host/Port con el
##	que deseas conectar.
##
##	Puedes tambin editar 'listen.m3u' (en el directorio extra) de modo que esto indique el
##	dominio y el puerto correcto, este archivo es usado para usuarios del Windows Media Player
##		
## 
######################################################################################### 
## MOD History: 
## 
##   2005-08-25 - Version 1.0.3 
##      - initial public release version 
##
##   2005-MM-DD - Version 1.0.1 
##      - initial private release version 
## 
######################################################################################### 
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
######################################################################################### 
# 
#-----[ COPIAR ]------------------------------------------ 
# 

root/includes/*.*		to	/includes/
root/templates/subSilver/*.*	to	/templates/subSilver/

# 
#-----[ ABRIR ]------------------------------------------ 
#

index.php

# 
#-----[ FIND ]------------------------------------------ 
#

//
// Generate the page
//
$template->pparse('body');

# 
#-----[ ANTES, AGREGAR ]------------------------------------------ 
#

//
// Get the status of the Radio
//
include($phpbb_root_path . 'includes/radio_status.php');

# 
#-----[ ABRIR ]------------------------------------------ 
#
# Note: This will need to be done to all styles.

templates/<Style Name>/index_body.tpl

# 
#-----[ EN LA PARTE SUPERIOR DE ARCHIVO AGREGAR ]--------
#

{RADIO_STATUS}

# 
#-----[ ABRIR ]------------------------------------------ 
#
# Note: The following must be applied to all style CSS files

templates/subSilver/subSilver.css

# 
#-----[ BUSCAR ]------------------------------------------ 
#
# Note: If your adding the CSS below to any other style then just add the code below
#	in the AFTER ADD bit to the end of the CSS file.

/* Used for the navigation text, (Page 1,2,3 etc) and the navigation bar when in a forum */
.nav			{ font-weight: bold; font-size: 11px; color : #000000;}
a.nav			{ text-decoration: none; color : #006699; }
a.nav:hover		{ text-decoration: underline; }

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

/* Radio Status */
.navradion	{ font-weight: bold; font-size: 11px; color : #009900;}
a.navradion, a.navradion:visited	{ text-decoration: underline; color: #009900; }
a.navradion:hover	{ text-decoration: underline; color: #FF9900; }
a.navradion:active	{ text-decoration: underline; color: #FFCC00; }

.navradioff	{ font-weight: bold; font-size: 11px; color : #990000;}
a.navradioff, a.navradioff:visited	{ text-decoration: underline; color: #990000; }
a.navradioff:hover	{ text-decoration: underline; color: #FF9900; }
a.navradioff:active	{ text-decoration: underline; color: #FFCC00; }

# 
#-----[ GUARDAR/CERRAR ]------------------------------------------ 
# 
# EoM