Mister Spy Say ="Hello Kids ... :D" ___ ____ _ _____ | \/ (_) | | / ___| | . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _ | |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | | | | | | \__ \ || __/ | /\__/ / |_) | |_| | \_| |_/_|___/\__\___|_| \____/| .__/ \__, | | | __/ | |_| |___/ Bot Mister Spy V3
Mister Spy

Mister Spy

Current Path : /home/caballoscriollos/public_html/ficcc_2015/espanol/
Upload File :
Current File : /home/caballoscriollos/public_html/ficcc_2015/espanol/videos.php

<?php 

require_once('../inc_library.php'); 

/* obtenemos datos enviados */
$Page = intval($_REQUEST['Page']);

/* declaramos variables necesarias */
$oCategorias 	= new Categorias();
$oVideos		= new Videos();

/* obtenemos listado de categorias de videos */
$arrCategorias = $oCategorias->GetByIdTipo(ContenidoTipos::Videos);

$Titulo = 'Videos | ';
$Titulo.= $oDatosEmpresa->SeoRubroEmpresa . ' | ';
$Titulo.= $oDatosEmpresa->Localidad . ' | ';
$Titulo.= $oDatosEmpresa->SeoNombreEmpresa;

?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/base_esp.dwt.php" codeOutsideHTMLIsLocked="false" -->
<head>
<meta name="google-site-verification" content="Z2nD-W9RgTwTgo4_MdNCiMqn-4Nyro6sA15uX1nc3S0" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="languaje" content="<?=$oMetaTag->Languaje?>" />
<meta name="distribution" content="<?=$oMetaTag->Distribution?>" />
<meta name="robots" content="<?=$oMetaTag->Robots?>" />
<meta name="author" content="<?=$oMetaTag->Author?>" />
<meta name="classification" content="<?=$oMetaTag->Classification?>" />
<meta name="googlebot" content="<?=$oMetaTag->Googlebot?>" />
<meta name="generator" content="<?=$oMetaTag->Generator?>" />
<meta name="subject" content="<?=$oMetaTag->Subject?>" />
<meta name="abstract" content="<?=$oMetaTag->Abstract?>" />
<!-- InstanceBeginEditable name="doctitle" -->
<meta name="description" content="<?=$oMetaTag->Description?>" />
<meta name="keywords" content="" />
<title><?=$Titulo?></title>
<!-- InstanceEndEditable -->
<!-- InstanceBeginEditable name="head" -->

<?=Modules::WriteClientFunctions()?>
<link href="../css/basico_frontend.css" rel="stylesheet" type="text/css" />
<base href="<?=Config::UrlSitioEspanol?>" />

<!-- InstanceEndEditable -->
<link href="../css/style.css" rel="stylesheet" type="text/css" />
</head>

<body>
<div align="center">
<?php include("ssi_header.php"); ?>
<table width="980" border="0" cellspacing="0" cellpadding="0">
	<tr>
		<td height="5" valign="top"><div align="center"></div></td>
	</tr>
	<tr>
		<td valign="top">
			<!-- InstanceBeginEditable name="Contenido" -->
            
<table width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr>
        <td>
            <div align="center" id="titulos">
	            <div align="left">&raquo; <a href="home">Inicio</a> &raquo; Videos</div>
            </div>
        </td>
    </tr>
    <tr>
    	<td>&nbsp;</td>
    </tr>
    <tr>
        <td>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
                <tr>
                    <td valign="top">
	                    <table width="100%" border="0" cellspacing="0" cellpadding="0">

<?php if ($arrCategorias) { ?>
	<?php foreach ($arrCategorias as $oCategoria){ ?>
		<?php $arrVideos = $oVideos->GetLastByCategoria($oCategoria); ?>
		<?php if (!$arrVideos) continue; ?>

    		                <tr>
        			            <td width="50%" valign="top">
                				    <table width="100%" border="0" align="left" cellpadding="0" cellspacing="0">
                                        <tr>
                                            <td width="15" height="30" class="precioAhora">&raquo;</td>
                                            <td height="30" class="precioAhora">
                                            	<div align="left" class="rubros"> 
                                            		<div align="left"><strong><?=$oCategoria->Nombre?></strong></div>
                                            	</div>
                                            </td>
                                            <td width="10" class="precioAhora">&nbsp;</td>
                                        </tr>
                                        
   		<?php $Count = 1; ?>
     	<?php foreach ($arrVideos as $oVideo) { ?>
        	<?php if ($Count == 1) { ?>
                    
					                    <tr height="100">
                    						<td>&nbsp;</td>
                                            
        	<?php } ?>
                    
                                            <td align="left">
                                            	<div align="left">
                                            		<table width="100%" border="0" align="left" cellpadding="0" cellspacing="0">

														<?php if ($oVideo->Url != '') { ?>
                                                        <tr>
                                                            <td width="250">
                                                                <div align="left"><?=ChangeSizeVideoYouTube($oVideo->Url, 350, 250)?></div>
                                                            </td>
                                                        </tr>
                                                        <?php } ?>
                                                                    
								                    </table>
							                    </div>
					                    	</td>
                                            
            <?php if ($Count == 2) { $Count = 0; ?>
            
						                    <td>&nbsp;</td>
					                    </tr>
                                        
            <?php } ?>
            <?php $Count++; ?>
     	<?php } ?>
                    
                    				</table>
                           		</td>
                    		</tr>
                            <tr>
                            	<td>&nbsp;</td>
                            </tr>
                            <tr>
                                <td valign="top">
                                    <table width="100%" border="0" cellspacing="0" cellpadding="0">
                                        <tr>
	                                        <td height="1" background="imagenes/linea_punteada.png"><div align="center"></div></td>
                                        </tr>
                                    </table>
                                </td>
                            </tr>
                    
  	<?php } ?>
<?php } ?>
                    
                    	</table>
                    </td>
                </tr>
            </table>
        </td>
    </tr>
</table>

    <!-- InstanceEndEditable -->
		</td>
	</tr>
	<tr>
		<td valign="top">&nbsp;</td>
	</tr>
</table>
<?php include("ssi_footer.php"); ?>
</div>

<?php echo $oGoogleAnalytic->Codigo; ?>
</body>
<!-- InstanceEnd --></html>

Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat