2021-05-23 16:23:25 +02:00
|
|
|
<?php
|
|
|
|
//General Config File:
|
|
|
|
require_once('../assets/php/config.php');
|
|
|
|
|
|
|
|
//Get Film to purchase:
|
|
|
|
include_once($prefix.'assets/php/includes/film_dao.php');
|
|
|
|
include_once($prefix.'assets/php/includes/film.php');
|
|
|
|
include_once($prefix.'assets/php/includes/cinema.php');
|
|
|
|
|
|
|
|
$film = null;
|
|
|
|
$cinemas = [];
|
|
|
|
if(isset($_GET["film"])){
|
|
|
|
$filmDAO = new Film_DAO("complucine");
|
|
|
|
$film = $filmDAO->FilmData($_GET["film"]);
|
|
|
|
$tittle = $film->getTittle();
|
|
|
|
|
|
|
|
$cinemas = $filmDAO->getCinemas($_GET["film"]);
|
2021-05-24 10:18:17 +02:00
|
|
|
if(!empty($cinemas)){
|
|
|
|
$cinemasNames = array();
|
|
|
|
foreach($cinemas as $key=>$value){
|
|
|
|
$cinemasNames[$key] = $value->getName();
|
|
|
|
}
|
|
|
|
|
|
|
|
$cinemasListHTML = '<select name="cinemas">';
|
|
|
|
foreach($cinemasNames as $value){
|
|
|
|
if($value == reset($cinemasNames)){
|
|
|
|
$cinemasListHTML .= '<option value="'.$value.'" selected>'.$value.'</option>';
|
|
|
|
} else {
|
|
|
|
$cinemasListHTML .='<option value="'.$value.'">'.$value.'</option>';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$cinemasListHTML .= '</select>';
|
|
|
|
} else {
|
|
|
|
$cinemasListHTML = '<select name="cinemas"><option value="" selected>No hay cines disponibles para esta película.</option></select>';
|
2021-05-23 16:23:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//Reply: Depends on whether the purchase is to be made from a selected movie or a cinema.
|
|
|
|
$reply = '<div class="column left">
|
|
|
|
<h2>Película seleccionada: '.str_replace('_', ' ', $tittle).'</h2><hr />
|
|
|
|
<div class="image"><img src="'.$prefix.'img/films/'.$tittle.'.jpg" alt="'.$tittle.'" /></div>
|
2021-05-24 10:18:17 +02:00
|
|
|
<p>Duración: '.$film->getDuration().' minutos</p>
|
2021-05-23 16:23:25 +02:00
|
|
|
<p>Idioma: '.$film->getLanguage().'</p>
|
|
|
|
</div>
|
|
|
|
<div class="column right">
|
2021-05-24 10:18:17 +02:00
|
|
|
<h2>Seleccione un Cine y una Sesión</h2><hr />
|
|
|
|
<br /><h3>Cines</h3>
|
2021-05-23 16:23:25 +02:00
|
|
|
'.$cinemasListHTML.'
|
2021-05-24 10:18:17 +02:00
|
|
|
<h3>Sesiones</h3>
|
2021-05-23 16:23:25 +02:00
|
|
|
</div>
|
|
|
|
';
|
|
|
|
|
|
|
|
//Page-specific content:
|
|
|
|
$section = '<!-- Purchase -->
|
|
|
|
<section id="purchase">
|
|
|
|
<div class="row">
|
2021-05-24 10:18:17 +02:00
|
|
|
<section class="code purchase">
|
2021-05-23 16:23:25 +02:00
|
|
|
'.$reply.'
|
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
';
|
|
|
|
|
|
|
|
//General page content:
|
|
|
|
require RAIZ_APP.'/HTMLtemplate.php';
|
|
|
|
?>
|