SW/panel_manager/manage_rooms.php

40 lines
1.2 KiB
PHP
Raw Normal View History

<?php
2021-04-12 17:21:59 +02:00
require('./includes/hall_dto.php');
2021-04-12 17:21:59 +02:00
$r1 = new HallDTO(0,20,20,30);
$r2 = new HallDTO(1,10,30,30);
$r3 = new HallDTO(2,30,10,30);
$r4 = new HallDTO(3,15,15,30);
$rooms = array($r1, $r2, $r3, $r4);
2021-04-12 17:21:59 +02:00
function drawHalls($ros){
2021-03-29 01:04:21 +02:00
echo "
<div class=\"column middle\">
2021-03-29 01:04:21 +02:00
<table class='alt'>
<thead>
<tr>
<th>Sala</th>
<th>Opción</th>
</tr>
</thead>
<tbody>";
foreach($ros as $r){
echo "
2021-03-29 01:04:21 +02:00
<tr>
<!-- AUN NO HEMOS VISTO JAVASCRIPT -->
<!-- ADEMÁS, AUNQUE USÁSEMOS JS, ESO NO SE HARÍA CON UN WINDOWS.LOCATION.HREF, DE MOMENTO, USAD LOS BOTONES COMO OS PONGO EL DE AÑADIR -->
2021-04-12 17:21:59 +02:00
<!--<td> <button type=\"button\"> Sala ". $r->getNumber() ."</button> </td> -->
<td><a href=\"\" class='button'>Sala". $r->getNumber() ."</a></td>
2021-03-29 01:04:21 +02:00
<!--<td> <button type=\"button\" onClick=\"Javascript:window.location.href = 'index.php?edit_rooms=true';\")\">Editar</button> </td> MAL, POR LO MISMO-->
<td><a href=\"index.php?edit_rooms=true\" class='button'>Editar</a></td>
</tr>";
}
2021-03-29 01:04:21 +02:00
echo "<tbody>
</table>\n";
echo "<a href=\"index.php?edit_sessions=true\" class='button large'>Añadir</a>
</div>";
}
2021-04-12 17:21:59 +02:00
drawHalls($rooms);
?>