From 489d9af2df4e8b0bb709a108f514f3c44c857abd Mon Sep 17 00:00:00 2001
From: Markines16 <80280295+Markines16@users.noreply.github.com>
Date: Sun, 6 Jun 2021 13:34:55 +0200
Subject: [PATCH] Delete formSession.php
---
panel_manager/includes/formSession.php | 170 -------------------------
1 file changed, 170 deletions(-)
delete mode 100644 panel_manager/includes/formSession.php
diff --git a/panel_manager/includes/formSession.php b/panel_manager/includes/formSession.php
deleted file mode 100644
index e4e8a26..0000000
--- a/panel_manager/includes/formSession.php
+++ /dev/null
@@ -1,170 +0,0 @@
-option = $option;
- $this->cinema = $cinema;
- $this->formID = 'formSession1';
-
- $options = array("action" => "./?state=".$option);
- parent::__construct('formSession',$options);
- }
-
- //TODO Edit session no funciona correctamente con el seleccionar una pelicula distinta, hay que guardar la id de la sesion de alguna forma y usarla o guardar en la sesion
- protected function generaCamposFormulario($data, $errores = array()){
-
- $hall = $data['hall'] ?? $_POST["hall"] ?? "";
- $date = $data['date'] ?? $_POST["date"] ?? "";
- $start = $data['start'] ?? $_POST["start"] ?? "";
- $price = $data['price'] ?? $_POST["price"] ?? "";
- $format = $data['format'] ?? $_POST["format"] ?? "";
-
- $or_hall = $data["or_hall"] ?? $hall;
- $or_date = $data["or_date"] ?? $date;
- $or_start = $data["or_start"] ?? $start;
-
- $film = $data['film'] ?? $_POST["film"] ?? "";
- $tittle = $data['tittle'] ?? $_POST["tittle"] ?? "";
- $duration = $data['duration'] ?? $_POST["duration"] ?? "";
- $language = $data['language'] ?? $_POST["language"] ?? "";
- $description = $data['description'] ?? $_POST["description"] ?? "";
-
- $htmlErroresGlobales = self::generaListaErroresGlobales($errores);
- $errorPrice = self::createMensajeError($errores, 'price', 'span', array('class' => 'error'));
- $errorFormat = self::createMensajeError($errores, 'format', 'span', array('class' => 'error'));
- $errorDate = self::createMensajeError($errores, 'date', 'span', array('class' => 'error'));
- $errorStart = self::createMensajeError($errores, 'start', 'span', array('class' => 'error'));
-
- $html = '
-
'.$htmlErroresGlobales.'
-
-
- ';
- if($film){
- if($this->option == "new_session")
- $html .= '
-
';
-
- if($this->option == "edit_session"){
- $html .= '
-
';
- }
- }
- $html .= "
-
-
-
- ";
- if($film){
- $html .= "
-
-
-
".str_replace('_', ' ',$tittle)."
-
-
-
Duración: ".$duration." minutos
-
Duración: ".$language." minutos
-
-
- ";
- }
- $html .= '
-
-';
- return $html;
- }
- //Methods:
-
- //Process form:
- protected function procesaFormulario($data){
- $result = array();
-
- $film = $data['film'] ;
- $hall = $data['hall'] ;
- $date = $data['date'] ;
- $start = $data['start'];
- $price = $data['price'] ;
- $format = $data['format'] ;
- $repeat = $data['repeat'] ?? 0;
- $or_hall = $data["or_hall"] ;
- $or_date = $data["or_date"] ;
- $or_start = $data["or_start"] ;
-
- if (($price <= 0 || empty($price))&& isset($data["sumbit"]) ) {
- $result['price'] = " No puede haber 0 o menos euros.
";
- }
-
- if ((empty($format))&& isset($data["sumbit"]) ) {
- $result['format'] = " El formato no puede estar vacio.
";
- }
-
- if ((empty($date))&& isset($data["sumbit"]) ) {
- $result['date'] = " No hay una fecha seleccionada.
";
- }
-
- if ((empty($start))&& isset($data["sumbit"]) ) {
- $result['start'] = " No hay una hora inicial seleccionada.
";
- }
-
- if (count($result) === 0 && isset($data["sumbit"]) ) {
- if($this->option == "new_session"){
- $_SESSION['msg'] = Session::create_session($this->cinema, $hall, $start, $date, $film, $price, $format,$repeat);
- $result = './?state=success';
- }
- if($this->option == "edit_session"){
- $_SESSION['msg'] = Session::edit_session($this->cinema, $or_hall, $or_date, $or_start, $hall, $start, $date, $film, $price, $format);
- $result = './?state=success';
- }
- }
-
- if(!isset($result['hall']) && !isset($result['start']) && !isset($result['date']) && isset($data["delete"])) {
- $_SESSION['msg'] = Session::delete_session($this->cinema, $or_hall, $or_start, $or_date);
- $result = './?state=success';
- }
-
- return $result;
- }
-}
-
-?>
\ No newline at end of file