Add files via upload
This commit is contained in:
parent
6625d9787a
commit
7587548296
@ -358,6 +358,9 @@
|
||||
.code.showtimes:hover {
|
||||
filter: drop-shadow(5px 5px 10px #1f2c3d);
|
||||
}
|
||||
.code.cinemas {
|
||||
height: 200px;
|
||||
}
|
||||
.code.purchase {
|
||||
text-align: center;
|
||||
}
|
||||
|
@ -356,6 +356,9 @@ main img {
|
||||
.code.showtimes:hover {
|
||||
filter: drop-shadow(5px 5px 10px #1f2c3d);
|
||||
}
|
||||
.code.cinemas {
|
||||
height: 200px;
|
||||
}
|
||||
.code.purchase {
|
||||
text-align: center;
|
||||
}
|
||||
|
@ -465,6 +465,8 @@
|
||||
//List of the cinemas:
|
||||
require_once(__DIR__.'/includes/cinema_dao.php');
|
||||
|
||||
$prefix= $this->get_prefix();
|
||||
|
||||
$cine = new Cinema_DAO("complucine");
|
||||
$cinemas = $cine->allCinemaData();
|
||||
$ids = array();
|
||||
@ -482,6 +484,36 @@
|
||||
}
|
||||
|
||||
switch($this->page){
|
||||
case "Nuestros Cines":
|
||||
for($i = 0; $i < count($cinemas); $i++){
|
||||
if($i%2 === 0){
|
||||
if($i != 0) $reply .= "</div>
|
||||
";
|
||||
$reply .= "<div class='column side'>
|
||||
";
|
||||
}
|
||||
else{
|
||||
if($i != 0) $reply .= "</div>
|
||||
";
|
||||
$reply .= "<div class='column middle'>
|
||||
";
|
||||
}
|
||||
$reply .= "<section id='".$names[$i]."'>
|
||||
<div class='zoom'>
|
||||
<a href='".$prefix."purchase?cinema=".$ids[$i]."'>
|
||||
<div class='code cinemas'>
|
||||
<h2>".$names[$i]."</h2>
|
||||
<hr />
|
||||
<li>Dirección: ".$directions[$i]."</li>
|
||||
<li>Teléfono: ".$phones[$i]." minutos</li>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</section>
|
||||
";
|
||||
}
|
||||
$reply .= "</div>\n";
|
||||
break;
|
||||
case "Panel de Administrador":
|
||||
$reply .= "<div class='row'>
|
||||
<div class='column side'></div>
|
||||
|
@ -2,8 +2,14 @@
|
||||
//General Config File:
|
||||
require_once('../assets/php/config.php');
|
||||
|
||||
//Specific page content:
|
||||
$section = '';
|
||||
//Page-specific content:
|
||||
$section = '<!-- Cinemas -->
|
||||
<section id="cinemas">
|
||||
<div class="row">
|
||||
'.$template->print_cinemas().'
|
||||
</div>
|
||||
</section>
|
||||
';
|
||||
|
||||
//General page content:
|
||||
require RAIZ_APP.'/HTMLtemplate.php';
|
||||
|
@ -101,8 +101,15 @@
|
||||
$reply = '<h1>No existe la película.</h1>';
|
||||
$pay = false;
|
||||
}
|
||||
} else if(isset($_GET["cinema"])) {
|
||||
$reply = '<h1>ESTAMOS TRABAJANDO EN ELLO</h1>';
|
||||
$pay = false;
|
||||
} else {
|
||||
$reply = '<h1>No ha encontrado película ni cine.</h1>';
|
||||
$pay = false;
|
||||
}
|
||||
|
||||
|
||||
//Pay button:
|
||||
if($pay){
|
||||
$pay = '<form action="confirm.php" method="post">
|
||||
|
Loading…
Reference in New Issue
Block a user