Mister Spy Say ="Hello Kids ... :D"
___ ____ _ _____
| \/ (_) | | / ___|
| . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _
| |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | |
| | | | \__ \ || __/ | /\__/ / |_) | |_| |
\_| |_/_|___/\__\___|_| \____/| .__/ \__, |
| | __/ |
|_| |___/
Bot Mister Spy V3
Mister Spy
Mister Spy
<?php
require_once('library/class.categorias.php');
require_once('library/class.eventos.php');
/* obtenemos datos enviados */
$filter = array();
$filter['IdCategoria'] = intval($_REQUEST['IdCategoria']);
$filter['FechaDesde'] = strval($_REQUEST['start']);
$filter['FechaHastaReal'] = strval($_REQUEST['end']);
$filter['NombreAlternativo'] = strval($_REQUEST['tipoCompetencia']);
$Page = intval($_REQUEST['pageIndex']);
$PageSize = intval($_REQUEST['pageSize']);
/* declaramos e instanciamos variables necesarias */
$arrData = array();
$oEventos = new Eventos();
$oCategorias = new Categorias();
$arrData = $oEventos->GetAll($filter);
$arrResult = array();
if ($arrData)
{
foreach ($arrData as $oEvento)
{
$disciplinas = '';
foreach ($oEvento->GetCategorias() as $oEventoCategoria) {
$disciplinas.= '<li class=\'calendar-' . $oEventoCategoria->GetCategoria()->NombreAlternativo . '\'></li>';
}
$row = array(
'backgroundColor' => '#333333',
'start' => $oEvento->Fecha,
'end' => $oEvento->FechaHasta ? $oEvento->FechaHasta : $oEvento->Fecha,
'seccion' => 'Disciplinas',
'title' => $oEvento->Titulo,
'url' => 'eventos_detalle.php?IdEvento=' . $oEvento->IdEvento,
'disciplinas' => $disciplinas
);
$arrResult[] = $row;
}
}
header('Content-type: application/json');
echo json_encode($arrResult);
?>
Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat