d370d281f1
La lista de salas se obtiene de forma distinta, por eso editar/crear sessiones ha dejado de funcionar, pero bueno, estamos a la espera de ver como deberiamos estructurarlo y eso hay que cambiarlo asi que tampoco es problema. El html del formulario de crear salas esta guardado en formhalls, haciendo mas sencillo el codigo de la vista y la logica de edit_halls
121 lines
3.6 KiB
PHP
121 lines
3.6 KiB
PHP
<?php
|
|
include_once('../assets/php/common/hall_dao.php');
|
|
include_once('../assets/php/form.php');
|
|
|
|
class FormHall extends Form {
|
|
|
|
//Atributes:
|
|
private $correct;
|
|
private $reply;
|
|
private $option;
|
|
private $halls;
|
|
|
|
//Constructor:
|
|
public function __construct() {
|
|
parent::__construct('formSession');
|
|
$this->reply = array();
|
|
}
|
|
|
|
protected function generaCamposFormulario($datos, $errores = array()){
|
|
$this->option = $_SESSION['option'];
|
|
$_SESSION['option'] = "";
|
|
$htmlform = "";
|
|
|
|
|
|
|
|
if($this->option == "new"){
|
|
$number = $datos['number'] ?? '';
|
|
$rows = $datos['rows'] ?? '';
|
|
$cols = $datos['cols'] ?? '';
|
|
$seats = $datos['seats'] ?? '';
|
|
|
|
|
|
$htmlform .= '
|
|
<fieldset>
|
|
<label>Numero de sala:</label> <input type="text" name="number" value="'.$number.'"/> <br>
|
|
<label>Filas:</label> <input type="text" name="rows" value= "'.$rows.'"/><br>
|
|
<label>Columnas:</label> <input type="text" name="cols" value= "'.$cols.'"/><br>
|
|
<label>Butacas totales:</label> <input type="text" name="seats" value= "'.$seats.'"/><br>
|
|
<button type="submit" name="newHall">Crear</button></div><br>
|
|
</fieldset>
|
|
';
|
|
}
|
|
|
|
|
|
return $htmlform;
|
|
}
|
|
//Methods:
|
|
|
|
//Returns validation response:
|
|
public function getReply() {
|
|
|
|
if($this->correct){
|
|
if($this->option == "new"){
|
|
$this->reply = "<h1> Operacion realizada con exito </h1><hr />
|
|
<p> Se ha añadido la sala correctamente en la base de datos.</p>
|
|
<a href='../panel_manager/index.php'><button>Panel Gerente</button></a>";
|
|
}else if($this->option == "edit"){
|
|
$this->reply = "<h1> Operacion realizada con exito </h1><hr />
|
|
<p> Se ha editado la sala correctamente en la base de datos.</p>
|
|
<a href='../panel_manager/index.php'><button>Panel Gerente</button></a>";
|
|
}else if($this->option == "del"){
|
|
$this->reply = "<h1> Operacion realizada con exito </h1><hr />
|
|
<p> Se ha eliminado la sala correctamente en la base de datos.</p>
|
|
<a href='../panel_manager/index.php'><button>Panel Gerente</button></a>";
|
|
}else if($this->option == "list"){
|
|
$this->reply = $this->halls;
|
|
}
|
|
} else {
|
|
$this->reply = "<h1> ERROR </h1><hr />
|
|
<p> Ha habido un error en la operacion. Revisa los datos introducidos o ponte en contacto con el administrador de la base de datos.</p>
|
|
<a href='../panel_manager/index.php'><button>Panel Gerente</button></a>";
|
|
}
|
|
return $this->reply;
|
|
}
|
|
|
|
//Process form:
|
|
public function processesForm($datos){
|
|
$this->correct = true;
|
|
$bd = new HallDAO('complucine');
|
|
|
|
|
|
if($bd ){
|
|
if($option == "list"){
|
|
$this->halls = $bd->getAllHalls($cinema);
|
|
}else {
|
|
/* TODO
|
|
$start = date('H:i:s', strtotime( $start ) );
|
|
|
|
if($option == "new"){
|
|
|
|
$selectSession = $bd->selectSession($cinema, $hall, $start, $date);
|
|
if($selectSession && $selectSession->num_rows >= 1) {
|
|
$this->correct = false;
|
|
} else{
|
|
$bd->createSession(null, $film, $hall,$cinema, $date, $start, $price, $format);
|
|
}
|
|
|
|
mysqli_free_result($selectSession);
|
|
|
|
} else if ($option == "del"){
|
|
$bd->deleteSession($id);
|
|
|
|
} else if ($option == "edit"){
|
|
$bd->editSession($id, $film, $hall, $cinema, $date, $start, $price, $format);
|
|
}
|
|
|
|
if($repeat > "0"){
|
|
$repeat--;
|
|
$date = date('Y-m-d', strtotime( $date. ' +1 day') );
|
|
$this->processesForm($film, $hall, $cinema, $date, $start, $price, $format, $repeat);
|
|
}
|
|
*/
|
|
}
|
|
|
|
} else {$this->correct = false;}
|
|
}
|
|
}
|
|
|
|
?>
|
|
|