This commit is contained in:
Daniel Muñoz Garcia 2021-05-13 12:37:15 +02:00 committed by GitHub
parent 2b99c192b7
commit a5cac66b1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 18 additions and 19 deletions

View File

@ -21,8 +21,8 @@ class formAddManager extends Form{
// Se generan los mensajes de error si existen.
$htmlErroresGlobales = self::generaListaErroresGlobales($errores);
//$errorId = self::createMensajeError($errores, 'id', 'span', array('class' => 'error'));
//$errorIdCinema = self::createMensajeError($errores, 'idcinema', 'span', array('class' => 'error'));
$errorId = self::createMensajeError($errores, 'id', 'span', array('class' => 'error'));
$errorIdCinema = self::createMensajeError($errores, 'idcinema', 'span', array('class' => 'error'));
$html = '<div class="row">
<fieldset id="film_form"><pre>'.$htmlErroresGlobales.'</pre>
@ -48,13 +48,13 @@ class formAddManager extends Form{
$id = $this->test_input($datos['id']) ?? null;
if (is_null($id) ) {
$result[] = "ERROR. No existe un usuario con ese ID";
$result['id'] = "ERROR. No existe un usuario con ese ID";
}
$idcinema = $this->test_input($datos['idcinema']) ?? null;
//||!mb_ereg_match(self::HTML5_EMAIL_REGEXP, $duration)
if (is_null($idcinema)) {
$result[] = "ERROR. No existe un cine con ese ID";
$result['idcinema'] = "ERROR. No existe un cine con ese ID";
}

View File

@ -19,6 +19,7 @@ class formDeleteFilm extends Form{
// Se generan los mensajes de error si existen.
$htmlErroresGlobales = self::generaListaErroresGlobales($errores);
$errorId = self::createMensajeError($errores, 'id', 'span', array('class' => 'error'));
//$errorTittle = self::createMensajeError($errores, 'tittle', 'span', array('class' => 'error'));
//$errorDuration = self::createMensajeError($errores, 'duration', 'span', array('class' => 'error'));
//$errorLanguage = self::createMensajeError($errores, 'language', 'span', array('class' => 'error'));
@ -26,7 +27,7 @@ class formDeleteFilm extends Form{
//$errorImage = self::createMensajeError($errores, 'image', 'span', array('class' => 'error'));
$html = '<div class="row">
<fieldset id="film_form">
<fieldset id="film_form"><pre>'.$htmlErroresGlobales.'</pre>
<legend>¿Estás seguro de que quieres eliminar esta pelicula?</legend>
<input type="hidden" name="id" value='.$_POST['id'].'/>
<p>Id: '.$_POST['id'].' </p>
@ -48,7 +49,7 @@ class formDeleteFilm extends Form{
$result = array();
$id = $this->test_input($_POST['id']) ?? null;
if ( empty($id)) {
$result[] = "La pelicula seleccionada no existe.";
$result['id'] = "La pelicula seleccionada no existe.";
}
if (count($result) === 0) {

View File

@ -19,11 +19,11 @@ class formDeleteManager extends Form{
// Se generan los mensajes de error si existen.
$htmlErroresGlobales = self::generaListaErroresGlobales($errores);
//$errorId = self::createMensajeError($errores, 'id', 'span', array('class' => 'error'));
$errorId = self::createMensajeError($errores, 'id', 'span', array('class' => 'error'));
//$errorIdCinema = self::createMensajeError($errores, 'idcinema', 'span', array('class' => 'error'));
$html = '<div class="row">
<fieldset id="promotion_form">
<fieldset id="promotion_form"><pre>'.$htmlErroresGlobales.'</pre>
<legend>¿Estás seguro de que quieres eliminar este gerente?</legend>
<input type="hidden" name="id" value='.$_POST['id'].'/>
<p>Id: '.$_POST['id'].' </p>
@ -46,7 +46,7 @@ class formDeleteManager extends Form{
$id = $this->test_input($datos['id']) ?? null;
if (is_null($id) ) {
$result[] = "ERROR. No existe un manager con ese ID";
$result['id'] = "ERROR. No existe un manager con ese ID";
}
if (count($result) === 0) {

View File

@ -20,18 +20,16 @@ class formEditFilm extends Form{
// Se generan los mensajes de error si existen.
$htmlErroresGlobales = self::generaListaErroresGlobales($errores);
$errorId = self::createMensajeError($errores, 'id', 'span', array('class' => 'error'));
$errorTittle = self::createMensajeError($errores, 'tittle', 'span', array('class' => 'error'));
$errorDuration = self::createMensajeError($errores, 'duration', 'span', array('class' => 'error'));
$errorLanguage = self::createMensajeError($errores, 'language', 'span', array('class' => 'error'));
$errorDescription = self::createMensajeError($errores, 'description', 'span', array('class' => 'error'));
$errorImage = self::createMensajeError($errores, 'image', 'span', array('class' => 'error'));
$html = '<div class="column side"></div>
<div class="column middle">
<h2>Editar pelicula</h2>
<form method="post" enctype="multipart/form-data" action="index.php?state=mf">
$html = '
<div class="row">
<fieldset id="film_form">
<fieldset id="film_form"><pre>'.$htmlErroresGlobales.'</pre>
<legend>Datos de pelicula</legend>
<input type="hidden" name="id" value='.$_POST['id'].'/>
<input type="text" name="tittle" value='.$_POST['tittle'].' required/><pre>'.$errorTittle.'</pre>
@ -57,7 +55,7 @@ class formEditFilm extends Form{
$result = array();
$id = $this->test_input($_POST['id']) ?? null;
if ( is_null($id)) {
if ( empty($id)) {
$result[] = "La pelicula seleccionada no existe.";
}

View File

@ -20,8 +20,8 @@ class formEditManager extends Form{
// Se generan los mensajes de error si existen.
$htmlErroresGlobales = self::generaListaErroresGlobales($errores);
//$errorId = self::createMensajeError($errores, 'id', 'span', array('class' => 'error'));
//$errorIdCinema = self::createMensajeError($errores, 'idcinema', 'span', array('class' => 'error'));
$errorId = self::createMensajeError($errores, 'id', 'span', array('class' => 'error'));
$errorIdCinema = self::createMensajeError($errores, 'idcinema', 'span', array('class' => 'error'));
$html = '<div class="row">
<h1>EDITAR GERENTE ID:'.$_POST['id'].'</h1>
@ -45,13 +45,13 @@ class formEditManager extends Form{
$id = $this->test_input($datos['id']) ?? null;
if (is_null($id) ) {
$result[] = "ERROR. No existe un usuario con ese ID";
$result['id'] = "ERROR. No existe un usuario con ese ID";
}
$idcinema = $this->test_input($datos['idcinema']) ?? null;
//||!mb_ereg_match(self::HTML5_EMAIL_REGEXP, $duration)
if (is_null($idcinema)) {
$result[] = "ERROR. No existe un cine con ese ID";
$result['idcinema'] = "ERROR. No existe un cine con ese ID";
}