Actualizado con los "consejos" de fer

Actualizado la tabla, como se crean sus objetos y como formatean los echo.
Añadida el selector de sala y fecha.
Añadido funcionalidad basica de prueba a los botones para poder cambiar entre los paneles de gestion.
This commit is contained in:
Markines16 2021-03-26 14:05:05 +01:00 committed by GitHub
parent 2d24fe23f5
commit 6f4ec68a14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,8 @@
require_once('../assets/php/template.php'); require_once('../assets/php/template.php');
$template = new Template(); $template = new Template();
require_once('./session_dto.php');
require_once('./room_dto.php');
// IMPORTANTE: // IMPORTANTE:
// VERIFICAR QUE ES MANAGER(GERENTE), SI NO, MOSTRAR MENSAJE DE "ERROR" // VERIFICAR QUE ES MANAGER(GERENTE), SI NO, MOSTRAR MENSAJE DE "ERROR"
?> ?>
@ -30,120 +31,86 @@
<!-- Panel --> <!-- Panel -->
<div class="row"> <div class="row">
<!-- Left Sidebar --> <?php if(isset($_GET['edit_sessions'])){ ?>
<div class="sidebar left"> <!-- Edit sessions panels -->
<ul> <p> Esto es solo una prueba para poder diseñar la vista de editar y añadir sesiones. hay 98% de probabilidades de que este mal o no sea optimo la forma de haber llegado a este panel <p>
<li>Funcionalidad:</li> <td> <button type="button" onClick="Javascript:window.location.href = 'index.php';")>Volver</button> </td>
<ul>
<li>Subfuncionalidad</li> <?php } elseif(isset($_GET['edit_rooms'])){ ?>
<li>Subfuncionalidad</li> <!-- Edit rooms panels -->
</ul><br /> <p> Esto es solo una prueba para poder diseñar la vista de editar y añadir salas. hay 94% de probabilidades de que este mal o no sea optimo la forma de haber llegado a este panel <p>
<li>Ver como:</li> <td> <button type="button" onClick="Javascript:window.location.href = 'index.php';")>Volver</button> </td>
<ul>
<li>Usuario no registrado</li>
<li>Usuario registrado</li> <?php } else { ?>
<li>Gerente</li> <!-- Choose Rooms and Date -->
</ul><br /> <div class="column left">
<li>Añadir/Editar/Eliminar:</li> <input type="date" name="fecha" min="2021-01-01" max="2031-12-31">
<ul> <?php
<li>Cines</li> $r1 = new RoomDTO(0,20,20);
<li>Películas</li> $r2 = new RoomDTO(1,10,30);
<li>Promociones</li> $r3 = new RoomDTO(2,30,10);
<li>Gerente</li> $r4 = new RoomDTO(3,15,15);
</ul> $rooms = array($r1, $r2, $r3, $r4);
</ul>
function drawRooms($ros){
echo "<table>";
foreach($ros as $r){
echo "
<tr>
<td> <button type=\"button\"> Sala ". $r->getId() ."</button> </td>
<td> <button type=\"button\" onClick=\"Javascript:window.location.href = 'index.php?edit_rooms=true';\")\">Editar</button> </td>
</tr>";
}
echo "
<tr>
<td> <button type=\"button\" onClick=\"Javascript:window.location.href = 'index.php?edit_rooms=true';\")\">Añadir</button> </td>
</tr>
</table>\n";
}
drawRooms($rooms);
?>
</div> </div>
<!-- Contents --> <!-- Sessions List -->
<div class="row"> <div class="row">
<div class="column left"> <div class="column left">
<?php <?php
class Session {
public $hour;
public $title;
public $format;
public $lang;
}
$s1 = new Session(); $s1 = new SessionDTO(0,"HOY","10:00","9,99€","normal","Los vengativos: final del juego");
$s1->hour = '10:00'; $s2 = new SessionDTO(1,"HOY","12:00","10€","3D","Los vengativos: final del juego");
$s1->title = 'Los vengativos:final del juego'; $s3 = new SessionDTO(2,"HOY","14:00","10€","subtitulado","Los vengativos: final del juego");
$s1->format = 'Comic Sans'; $s4 = new SessionDTO(3,"HOY","16:00","9,99€","normal","Los vengativos: final del juego");
$s1->lang = 'Castellano'; $s5 = new SessionDTO(4,"HOY","18:00","9,99€","normal","Los vengativos: final del juego");
$s6 = new SessionDTO(5,"HOY","20:00","20€","4D","Los vengativos: final del juego");
$sessions = array($s1, $s2, $s3, $s4, $s5, $s6);
$s2 = new Session();
$s2->hour = '12:00';
$s2->title = 'Los vengativos:final del juego';
$s2->format = 'Comic Sans';
$s2->lang = 'Castellano';
$s3 = new Session();
$s3->hour = '14:00';
$s3->title = 'Los vengativos:final del juego';
$s3->format = 'Comic Sans';
$s3->lang = 'Castellano';
$s4 = new Session();
$s4->hour = '16:00';
$s4->title = 'Los vengativos:final del juego';
$s4->format = 'Comic Sans';
$s4->lang = 'Castellano';
$s5 = new Session();
$s5->hour = '18:00';
$s5->title = 'Los vengativos:final del juego';
$s5->format = 'Comic Sans';
$s5->lang = 'Castellano';
$s6 = new Session();
$s6->hour = '20:00';
$s6->title = 'Los vengativos:final del juego';
$s6->format = 'Comic Sans';
$s6->lang = 'Castellano';
$s7 = new Session();
$s7->hour = '22:00';
$s7->title = 'Los vengativos:final del juego';
$s7->format = 'Comic Sans';
$s7->lang = 'Castellano';
$s8 = new Session();
$s8->hour = '23:59';
$s8->title = 'Los vengativos:final del juego';
$s8->format = 'Comic Sans';
$s8->lang = 'Castellano';
$sessions = array($s1, $s2, $s3, $s4, $s5, $s6, $s7, $s8);
function drawSessions($ses){ function drawSessions($ses){
echo "<div class=\"table_container\">";
echo "<table border='1'>"; echo "<table>";
foreach($ses as $s){ foreach($ses as $s){
echo "<tr>"; echo "
<tr>
echo "<td> <td align='center'>". $s->hour."</td>"; <td>" . $s->getStartTime() . "</td>
echo "<td> <td align='center'>". $s->title."</td>"; <td>" . $s->getFilm() . "</td>
echo "<td> <td align='center'>". $s->format."</td>"; <td>" . $s->getFormat() . "</td>
echo "<td> <td align='center'>". $s->lang."</td>"; <td>". $s->getSeatPrice() . "</td>
echo "<td> <td align='center'><button type=\"button\">Editar</button></td>"; <td> <button type=\"button\" onClick=\"Javascript:window.location.href = 'index.php?edit_sessions=true';\")\">Editar</button> </td>
</tr>";
echo "</tr>";
} }
echo "<tr>"; echo "
echo "<td> <td align='center' colspan=\"9\"> <button type=\"button\">Añadir</button> </td>"; <tr>
echo "</tr>"; <td> <button type=\"button\" onClick=\"Javascript:window.location.href = 'index.php?edit_sessions=true';\")\">Añadir</button> </td>
</tr>
echo "</table>"; </table>";
echo "</div>";
} }
drawSessions($sessions); drawSessions($sessions);
?> ?>
</div> </div>
<div class="column side"></div> <div class="column side"></div>
</div> </div>
</div> <?php } ?>
<!-- Footer --> <!-- Footer -->
<?php <?php