-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.php
44 lines (40 loc) · 1022 Bytes
/
functions.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
function reservar($r, $c)// Función para cambiar a estado Reservado
{
global $escenario;
if ($escenario[$r][$c] == 'L') {
$escenario[$r][$c] = 'R';
} else {
error();
}
}
function comprar($r, $c)// Función para cambiar a estado Vendido
{
global $escenario;
if ($escenario[$r][$c] != 'V') {
$escenario[$r][$c] = 'V';
} else {
error();
}
}
function liberar($r, $c)// Función para cambiar a estado Libre
{
global $escenario;
if ($escenario[$r][$c] == 'R') {
$escenario[$r][$c] = 'L';
} else {
error();
}
}
function error()// Función que imprime una alerta con un mensaje de error
{
echo "<script> alert('La acción que desea realizar es invalida') </script>";
}
function recoveryData($_post)// Función que recupera los datos del Textarea
{
global $escenario;
$escenario = explode('/', $_post['data']);
foreach ($escenario as $key => $value) {
$escenario[$key] = explode('-', $value);
}
}