pequeños cambios de la estructura de los columns
This commit is contained in:
parent
17abb71522
commit
4bdb409ebb
@ -55,15 +55,20 @@
|
|||||||
</div>
|
</div>
|
||||||
<!-- Contents -->
|
<!-- Contents -->
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="column side"></div>
|
|
||||||
<div class="column middle">
|
<div class="column middle">
|
||||||
<?php
|
<?php
|
||||||
$panel->showPanel();
|
if(isset($_GET['edit_rooms']) == "true"){
|
||||||
|
echo "<p> Esto esta editando </p>";
|
||||||
|
if(isset($_GET['new_rooms']) == "true"){
|
||||||
|
echo "<p> Ademas es nueva </p>";
|
||||||
|
}
|
||||||
|
echo "</div>";
|
||||||
|
} else {
|
||||||
|
$panel->showPanel();
|
||||||
|
}
|
||||||
?>
|
?>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="column side"></div>
|
|
||||||
</div>
|
|
||||||
<!-- Footer -->
|
<!-- Footer -->
|
||||||
<?php
|
<?php
|
||||||
$template->print_footer();
|
$template->print_footer();
|
||||||
|
@ -34,3 +34,4 @@
|
|||||||
}
|
}
|
||||||
drawRooms($rooms);
|
drawRooms($rooms);
|
||||||
?>
|
?>
|
||||||
|
</div>
|
@ -2,72 +2,68 @@
|
|||||||
require('room_dto.php');
|
require('room_dto.php');
|
||||||
require('session_dto.php');
|
require('session_dto.php');
|
||||||
?>
|
?>
|
||||||
<!-- DEBEIS RECOLOCAR LAS COLUMNAS, ESTÁIS METIENDO UN COLUMN LEFT Y COLUMN RIGHT DENTRO DEL COLUMN MIDDLE DE PANEL_MANAGER -->
|
<input type="date" name="fecha" min="2021-01-01" max="2031-12-31">
|
||||||
<!-- ESO HACE QUE QUEDE TODO EN EL MEDIO APELOTONADO Y LO DE LA DERECHA VACÍO -->
|
<?php
|
||||||
<!-- DEBÉIS QUITAR LOS COLUMN LEFT Y RIGHT Y METER LO DEL COLUMN LEFT DENTRO DEL COLUMN MIDDLE DE PANEL_MANAGER Y EL CONTENIDO DEL COLUMN RIGHT DENTRO DEL SEGUNDO COLUMN SIDE DE PANEL_MANAGER -->
|
$r1 = new RoomDTO(0,20,20);
|
||||||
<div class="column left">
|
$r2 = new RoomDTO(1,10,30);
|
||||||
<input type="date" name="fecha" min="2021-01-01" max="2031-12-31">
|
$r3 = new RoomDTO(2,30,10);
|
||||||
<?php
|
$r4 = new RoomDTO(3,15,15);
|
||||||
$r1 = new RoomDTO(0,20,20);
|
$rooms = array($r1, $r2, $r3, $r4);
|
||||||
$r2 = new RoomDTO(1,10,30);
|
|
||||||
$r3 = new RoomDTO(2,30,10);
|
|
||||||
$r4 = new RoomDTO(3,15,15);
|
|
||||||
$rooms = array($r1, $r2, $r3, $r4);
|
|
||||||
|
|
||||||
function drawRooms($ros){
|
function drawRooms($ros){
|
||||||
echo "<table>";
|
echo "<table>";
|
||||||
foreach($ros as $r){
|
foreach($ros as $r){
|
||||||
echo "
|
echo "
|
||||||
<tr>
|
<tr>
|
||||||
<td> <button type=\"button\"> Sala ". $r->getId() ."</button> </td>
|
<td> <button type=\"button\"> Sala ". $r->getId() ."</button> </td>
|
||||||
</tr>";
|
</tr>";
|
||||||
}
|
}
|
||||||
echo "
|
echo "
|
||||||
</table>\n";
|
</table>\n";
|
||||||
}
|
}
|
||||||
drawRooms($rooms);
|
drawRooms($rooms);
|
||||||
?>
|
?>
|
||||||
</div>
|
</div>
|
||||||
<div class="column right">
|
<div class="column side">
|
||||||
<?php
|
<?php
|
||||||
$s1 = new SessionDTO(0,"HOY","10:00","9,99€","normal","Los vengativos: final del juego");
|
$s1 = new SessionDTO(0,"HOY","10:00","9,99€","normal","Los vengativos: final del juego");
|
||||||
$s2 = new SessionDTO(1,"HOY","12:00","10€","3D","Los vengativos: final del juego");
|
$s2 = new SessionDTO(1,"HOY","12:00","10€","3D","Los vengativos: final del juego");
|
||||||
$s3 = new SessionDTO(2,"HOY","14:00","10€","subtitulado","Los vengativos: final del juego");
|
$s3 = new SessionDTO(2,"HOY","14:00","10€","subtitulado","Los vengativos: final del juego");
|
||||||
$s4 = new SessionDTO(3,"HOY","16:00","9,99€","normal","Los vengativos: final del juego");
|
$s4 = new SessionDTO(3,"HOY","16:00","9,99€","normal","Los vengativos: final del juego");
|
||||||
$s5 = new SessionDTO(4,"HOY","18:00","9,99€","normal","Los vengativos: final del juego");
|
$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");
|
$s6 = new SessionDTO(5,"HOY","20:00","20€","4D","Los vengativos: final del juego");
|
||||||
$sessions = array($s1, $s2, $s3, $s4, $s5, $s6);
|
$sessions = array($s1, $s2, $s3, $s4, $s5, $s6);
|
||||||
|
|
||||||
function drawSessions($ses){
|
function drawSessions($ses){
|
||||||
|
|
||||||
echo "
|
echo "
|
||||||
<table class='alt'>
|
<table class='alt'>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Hora</th>
|
<th>Hora</th>
|
||||||
<th>Película</th>
|
<th>Película</th>
|
||||||
<th>Tipo</th>
|
<th>Tipo</th>
|
||||||
<th>Precio</th>
|
<th>Precio</th>
|
||||||
<!-- <th>Opción</th> --> <!-- HAY QUE ELIMINAR ESTA COLUMNA, COMO EXPLICÓ IVÁN EN CLASE, -->
|
<!-- <th>Opción</th> --> <!-- HAY QUE ELIMINAR ESTA COLUMNA, COMO EXPLICÓ IVÁN EN CLASE, -->
|
||||||
<!-- LAS TABLAS TIENEN EL PROBLEMA DE QUE CON MUCHAS COLUMNAS SE EXPANDEN FUERA DE LOS LÍMITES -->
|
<!-- LAS TABLAS TIENEN EL PROBLEMA DE QUE CON MUCHAS COLUMNAS SE EXPANDEN FUERA DE LOS LÍMITES -->
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>";
|
<tbody>";
|
||||||
foreach($ses as $s){
|
foreach($ses as $s){
|
||||||
echo "
|
echo "
|
||||||
<tr>
|
<tr>
|
||||||
<td>" . $s->getStartTime() . "</td>
|
<td>" . $s->getStartTime() . "</td>
|
||||||
<td>" . $s->getFilm() . "</td>
|
<td>" . $s->getFilm() . "</td>
|
||||||
<td>" . $s->getFormat() . "</td>
|
<td>" . $s->getFormat() . "</td>
|
||||||
<td>". $s->getSeatPrice() . "</td>
|
<td>". $s->getSeatPrice() . "</td>
|
||||||
<!-- <td> <button type=\"button\" onClick=\"Javascript:window.location.href = 'index.php?edit_sessions=true';\")\">Editar</button> </td> -->
|
<!-- <td> <button type=\"button\" onClick=\"Javascript:window.location.href = 'index.php?edit_sessions=true';\")\">Editar</button> </td> -->
|
||||||
<!-- LA SOLUCIÓN PUEDE SER PONER EN ELACE DE EDICIÓN EN CADA UNO DE LOS ELEMENTOS DE LA COLUMNA -->
|
<!-- LA SOLUCIÓN PUEDE SER PONER EN ELACE DE EDICIÓN EN CADA UNO DE LOS ELEMENTOS DE LA COLUMNA -->
|
||||||
</tr>";
|
</tr>";
|
||||||
}
|
}
|
||||||
echo "<tbody>
|
echo "<tbody>
|
||||||
</table>\n";
|
</table>\n";
|
||||||
echo "<a href=\"index.php?edit_sessions=true\" class='button large'>Añadir</a>";
|
echo "<a href=\"index.php?edit_sessions=true&new_session=true\" class='button large'>Añadir</a>";
|
||||||
}
|
}
|
||||||
drawSessions($sessions);
|
drawSessions($sessions);
|
||||||
?>
|
?>
|
||||||
</div>
|
</div>
|
@ -14,7 +14,8 @@
|
|||||||
case 'sessions': require('manage_sessions.php'); break;
|
case 'sessions': require('manage_sessions.php'); break;
|
||||||
default: echo "<h1>BIENVENIDO AL PANEL DE GERENTE </h1>
|
default: echo "<h1>BIENVENIDO AL PANEL DE GERENTE </h1>
|
||||||
<br>
|
<br>
|
||||||
<p> Espero que este pasando un buen dia </p>\n"; break;
|
<p> Espero que este pasando un buen dia </p>
|
||||||
|
</div>"; break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user