2021-05-02 17:25:58 +02:00
|
|
|
<?php
|
2021-04-26 22:40:34 +02:00
|
|
|
|
2021-05-02 17:25:58 +02:00
|
|
|
//General Config File:
|
|
|
|
include_once('../assets/php/config.php');
|
2021-04-26 22:40:34 +02:00
|
|
|
|
2021-05-02 17:25:58 +02:00
|
|
|
include_once('../assets/php/common/cinema.php');
|
|
|
|
include_once(__DIR__.'/includes/formCinema.php');
|
2021-04-26 22:40:34 +02:00
|
|
|
|
2021-05-02 17:25:58 +02:00
|
|
|
|
|
|
|
|
|
|
|
// View functions
|
|
|
|
/*function drawCinema(){
|
|
|
|
$cine = new Cinema_DAO("complucine");
|
|
|
|
$cinemas = $cine->allCinemaData();
|
|
|
|
echo "<div class='column left'>
|
|
|
|
<table class='alt'>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Id</th>
|
|
|
|
<th>Nombre</th>
|
|
|
|
<th>Direccion</th>
|
|
|
|
<th>Telefono</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>";
|
|
|
|
foreach($cinemas as $f){
|
|
|
|
echo '
|
|
|
|
<tr>
|
|
|
|
<td>'. $f->getId() .'</td>
|
|
|
|
<td>'. $f->getName() .'</td>
|
|
|
|
<td>'. $f->getDirection() .'</td>
|
|
|
|
<td>'. $f->getPhone() .'</td>
|
|
|
|
<td>
|
|
|
|
<form method="post" action="index.php?state=mc">
|
|
|
|
<input name="id" type="hidden" value="'.$f->getId().'">
|
|
|
|
<input name="name" type="hidden" value="'.$f->getName().'">
|
|
|
|
<input name="direction" type="hidden" value="'.$f->getDirection().'">
|
|
|
|
<input name="phone" type="hidden" value="'.$f->getPhone().'">
|
|
|
|
<input type="submit" id="submit" value="Editar" name="edit_cinema" class="primary" />
|
|
|
|
</form>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<form method="post" action="index.php?state=mc">
|
|
|
|
<input name="id" type="hidden" value="'.$f->getId().'">
|
|
|
|
<input name="name" type="hidden" value="'.$f->getName().'">
|
|
|
|
<input name="direction" type="hidden" value="'.$f->getDirection().'">
|
|
|
|
<input name="phone" type="hidden" value="'.$f->getPhone().'">
|
|
|
|
<input type="submit" id="submit" value="Eliminar" name="delete_cinema" class="primary" />
|
|
|
|
</form>
|
|
|
|
</td>
|
|
|
|
</tr>';
|
|
|
|
}
|
|
|
|
echo'<tbody>
|
2021-04-26 22:40:34 +02:00
|
|
|
</table>
|
2021-05-02 17:25:58 +02:00
|
|
|
</div>';
|
|
|
|
}*/
|
|
|
|
function addCinema(){
|
|
|
|
echo'<div class="column">
|
|
|
|
<h2>Añadir cine</h2>
|
|
|
|
<form method="post" action="index.php?state=mc">
|
2021-04-26 22:40:34 +02:00
|
|
|
<div class="row">
|
2021-05-02 17:25:58 +02:00
|
|
|
<fieldset id="cinema_form">
|
|
|
|
<legend>Datos del Cine</legend>
|
|
|
|
<div>
|
|
|
|
<input type="text" name="name" id="name" placeholder="Nombre" />
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<input type="text" name="direction" id="direction" placeholder="Direccion" />
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<input type="text" name="phone" id="phone" placeholder="Teléfono" />
|
|
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
<div class="actions">
|
|
|
|
<input type="submit" id="submit" value="Añadir cine" name="add_cinema" class="primary" />
|
|
|
|
<input type="reset" id="reset" value="Borrar" />
|
2021-04-26 22:40:34 +02:00
|
|
|
</div>
|
2021-05-02 17:25:58 +02:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>';
|
|
|
|
}
|
|
|
|
function deleteCinema() {
|
|
|
|
echo'<div class="column">
|
|
|
|
<h2>Editar cine</h2>
|
|
|
|
<form method="post" action="index.php?state=mc">
|
|
|
|
<div class="row">
|
|
|
|
<fieldset id="cinema_form">
|
|
|
|
<legend>¿Estás seguro de que quieres eliminar este cine?</legend>
|
|
|
|
<input type="hidden" name="id" value='.$_POST['id'].'/>
|
|
|
|
<p>Id: '.$_POST['id'].' </p>
|
|
|
|
<p>Nombre: '.$_POST['name'].' </p>
|
|
|
|
<p>Dirección: '.$_POST['direction'].' </p>
|
|
|
|
<p>Teléfono: '.$_POST['phone'].' </p>
|
|
|
|
</fieldset>
|
|
|
|
<div class="actions">
|
|
|
|
<input type="submit" id="submit" value="Eliminar" name="confirm_delete_film" class="primary" />
|
|
|
|
<input type="submit" id="submit" value="Cancelar" name="cancel_delete_film" class="primary" />
|
2021-04-26 22:40:34 +02:00
|
|
|
</div>
|
2021-05-02 17:25:58 +02:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>';
|
|
|
|
}
|
|
|
|
function editCinema() {
|
|
|
|
echo'<div class="column">
|
|
|
|
<h2>Editar cine</h2>
|
|
|
|
<form method="post" action="index.php?state=mc">
|
|
|
|
<div class="row">
|
|
|
|
<fieldset id="cinema_form">
|
|
|
|
<legend>Datos del cine</legend>
|
|
|
|
<input type="hidden" name="id" value='.$_POST['id'].'/>
|
|
|
|
<div>
|
|
|
|
<input type="text" name="name" value="'.$_POST['name'].'" />
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<input type="text" name="direction" value='.$_POST['direction'].' />
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<input type="text" name="phone" value='.$_POST['phone'].' />
|
|
|
|
</div>
|
2021-04-26 22:40:34 +02:00
|
|
|
</fieldset>
|
|
|
|
<div class="actions">
|
2021-05-02 17:25:58 +02:00
|
|
|
<input type="submit" id="submit" value="Editar" name="confirm_edit_cinema" class="primary" />
|
2021-04-26 22:40:34 +02:00
|
|
|
<input type="reset" id="reset" value="Borrar" />
|
2021-05-02 17:25:58 +02:00
|
|
|
</div>
|
2021-04-26 22:40:34 +02:00
|
|
|
</div>
|
2021-05-02 17:25:58 +02:00
|
|
|
</form>
|
|
|
|
</div>';
|
|
|
|
}
|
|
|
|
|
|
|
|
// Logic Functions
|
|
|
|
function confirmDelete() {
|
|
|
|
$cine = new FormCinema();
|
|
|
|
$cine->processesForm($_POST['id'],null,null,null,"del");
|
|
|
|
$_SESSION['message'] = $cine->getReply();
|
|
|
|
header('Location: ../panel_admin/index.php?state=mc');
|
|
|
|
}
|
|
|
|
function confirmEdit() {
|
|
|
|
$cine = new FormCinema();
|
|
|
|
$cine->processesForm($_POST['id'], $_POST['name'], $_POST['direction'], $_POST['phone'],"edit");
|
|
|
|
$_SESSION['message']= $cine->getReply();
|
|
|
|
header('Location: ../panel_admin/index.php?state=mc');
|
|
|
|
}
|
|
|
|
function confirmAdd() {
|
|
|
|
$cine = new FormCinema();
|
|
|
|
$cine->processesForm($_POST['id'], $_POST['name'], $_POST['direction'], $_POST['phone'],"new");
|
|
|
|
$_SESSION['message'] = $cine->getReply();
|
|
|
|
header('Location: ../panel_admin/index.php?state=mc');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
?>
|