Mister Spy Say ="Hello Kids ... :D"
___ ____ _ _____
| \/ (_) | | / ___|
| . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _
| |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | |
| | | | \__ \ || __/ | /\__/ / |_) | |_| |
\_| |_/_|___/\__\___|_| \____/| .__/ \__, |
| | __/ |
|_| |___/
Bot Mister Spy V3
Mister Spy
Mister Spy
<?php
ini_set('display_errors', '1');
ini_set('display_startup_errors', '1');
error_reporting(E_ALL);
require_once('inc_library.php');
$IdEvento = intval($_REQUEST['IdEvento']);
$Page = intval($_REQUEST['Page']);
$oEventos = new Eventos();
$oCategorias = new Categorias();
$oEvento = $oEventos->GetById($IdEvento);
$arrImagenes = $oEvento->GetAllImagenes();
?>
<!DOCTYPE html>
<html lang="en">
<?php include("ssi_head.php"); ?>
<body class="custom-cursor">
<div class="preloader">
<div class="preloader__image"></div>
</div>
<div class="page-wrapper">
<?php include("ssi_header.php"); ?>
<!--Page Header End-->
<div class="stricky-header stricked-menu main-menu main-menu-three">
<div class="sticky-header__content"></div><!-- /.sticky-header__content -->
</div><!-- /.stricky-header -->
<!--Page Header Start-->
<!-- <section class="page-header">
<div class="page-header__bg" style="background-image: url(assets/images/backgrounds/page-header-bg.jpg);">
</div>
<div class="page-header__shape-1 float-bob-y">
<img src="assets/images/shapes/page-header-shape-1.png" alt="">
</div>
<div class="page-header__shape-2 float-bob-x">
<img src="assets/images/shapes/page-header-shape-2.png" alt="">
</div>
<div class="page-header__shape-3 float-bob-y">
<img src="assets/images/shapes/page-header-shape-3.png" alt="">
</div>
<div class="page-header__shape-4 float-bob-x">
<img src="assets/images/shapes/page-header-shape-4.png" alt="">
</div>
<div class="container">
<div class="page-header__inner">
<h2>Contacto</h2>
<ul class="thm-breadcrumb list-unstyled">
<li><a href="index.php">Home</a></li>
<li><span class="icon-down-arrow"></span></li>
<li>Contacto</li>
</ul>
</div>
</div>
</section> -->
<!--Page Header Start-->
<!-- <section class="page-header">
<div class="page-header__bg">
</div>
<div class="container">
<div class="page-header__inner">
<h2><?= $oEvento->Titulo ?></h2>
<ul class="thm-breadcrumb list-unstyled">
<li><a href="index.php">Inicio</a></li>
<li><span class="icon-down-arrow"></span></li>
<li><a href="Eventos.php?IdCategoria=<?= $oCategoria->IdCategoria ?>"><?= $oCategoria->Nombre ?></a></li>
<li><span class="icon-down-arrow"></span></li>
<li><?= $oEvento->Titulo ?></li>
</ul>
</div>
</div>
</section> -->
<!--Page Header End-->
<section class="news-details">
<div class="container">
<div class="row">
<div class="col-xl-12">
<div class="news-details__left">
<div class="news-details__author-and-meta">
<div class="news-details__meta" style="margin-left: 0;">
<p><span class="fas fa-calendar"></span>Del <?= FechaLetrasLong($oEvento->Fecha) ?> <?= $oEvento->FechaHasta ? 'al ' . FechaLetrasLong($oEvento->FechaHasta) : '' ?></p>
</div>
</div>
<h3 class="news-details__title-1 mb-3"><?= $oEvento->Titulo ?></h3>
<hr>
<div class="mb-4">
<div class="sharethis-inline-share-buttons"></div>
</div>
<div class="row">
<div class="col-sm-4">
<span class="company-history__date">Inscripción</span>
<p class="company-history__text mb-20"><?= str_replace('-', '/', FechaLetrasLong($oEvento->FechaInscripcionDesde)) ?> - <?= str_replace('-', '/', FechaLetrasLong($oEvento->FechaInscripcionHasta)) ?></p>
</div>
<div class="col-sm-4">
<span class="company-history__date">Lugar</span>
<p class="company-history__text mb-20"><?= $oEvento->Localidad ?> - <?= utf8_encode($oEvento->GetProvincia()->Nombre) ?></p>
</div>
<div class="col-sm-4">
<span class="company-history__date">Región</span>
<p class="company-history__text mb-20"><?= $oEvento->GetRegion()->Nombre ?></p>
</div>
<div class="col-sm-12">
<hr>
</div>
<?php
if ($oEvento->GetCategorias()) {
?>
<div class="col-sm-12">
<span class="company-history__date">Competencias</span>
<?php
foreach ($oEvento->GetCategorias() as $oEventoCategoria) {
?>
<p class="company-history__text mb-20"><?= $oEventoCategoria->GetCategoria()->Nombre ?></p>
<?php
}
?>
</div>
<div class="col-sm-12">
<hr>
</div>
<?php
}
?>
</div>
<?php
if ($oEvento->Imagen) {
?>
<div class="news-details__img">
<img src="<?= str_replace('../', '', Evento::PathImageBig) . utf8_encode($oEvento->Imagen) ?>" alt="<?= $oEvento->Titulo ?>">
</div>
<?php
}
?>
<?php
if ($oEvento->Observaciones) {
?>
<h5 class="news-details__title-2 mt-5" style="font-size: 25px">Descripción</h5>
<div class="dynamic">
<?= utf8_encode($oEvento->Observaciones) ?>
</div>
<?php
}
?>
<?php
if ($oEvento->DescripcionTarifas) {
?>
<h5 class="news-details__title-2 mt-3" style="font-size: 25px">Tarifas</h5>
<div class="dynamic">
<?= utf8_encode($oEvento->DescripcionTarifas) ?>
</div>
<?php
}
?>
<?php
if ($oEvento->InformacionAdicional) {
?>
<h5 class="news-details__title-2 mt-3" style="font-size: 25px">Información Adicional</h5>
<div class="dynamic">
<?= utf8_encode($oEvento->InformacionAdicional) ?>
</div>
<?php
}
?>
</div>
</div>
</div>
</div>
</section>
<?php include("ssi_logos.php"); ?>
<?php include("ssi_footer.php"); ?>
</div><!-- /.page-wrapper -->
<?php include("ssi_mobile.php"); ?>
<?php include("ssi_search.php"); ?>
<a href="#" data-target="html" class="scroll-to-target scroll-to-top"><i class="icon-right-arrow"></i></a>
<?php include("ssi_scripts.php"); ?>
<script type="text/javascript" src="https://platform-api.sharethis.com/js/sharethis.js#property=657c787ca6ecd400190b3ca9&product=inline-share-buttons&source=platform" async="async"></script>
</body>
</html>
Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat