-
Notifications
You must be signed in to change notification settings - Fork 0
/
gimnasio.php
183 lines (157 loc) · 5.69 KB
/
gimnasio.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<?php
class Persona {
protected $dni;
protected $nombre;
protected $correo;
protected $celular;
public function __construct(string $dni, string $nombre, string $correo, string $celular) {
$this->dni = $dni;
$this->nombre = $nombre;
$this->correo = $correo;
$this->celular = $celular;
}
public function __get(string $propiedad) { return $this->$propiedad; }
public function __set(string $propiedad, $valor) { $this->$propiedad = $valor; }
}
class Alumno extends Persona {
private $fechaNac;
private $peso;
private $altura;
private $aptoFisico;
private $presentismo;
public function __construct(string $dni, string $nombre, string $correo, string $celular, string $fechaNac) {
$this->dni = $dni;
$this->nombre = $nombre;
$this->correo = $correo;
$this->celular = $celular;
$this->fechaNac = $fechaNac;
$this->peso = 0.0;
$this->altura = 0.0;
$this->aptoFisico = false;
$this->presentismo = 0.0;
}
public function setFichaMedica(float $peso, float $altura, bool $aptoFisico) {
$this->peso = $peso;
$this->altura = $altura;
$this->aptoFisico = $aptoFisico;
}
public function __get(string $propiedad) { return $this->$propiedad; }
public function __set(string $propiedad, $valor) { $this->$propiedad = $valor; }
}
class Entrenador extends Persona {
private $aClases;
public function __construct(string $dni, string $nombre, string $correo, string $celular) {
$this->dni = $dni;
$this->nombre = $nombre;
$this->correo = $correo;
$this->celular = $celular;
$this->aClases = [];
}
public function asignarClase(Clase $clase) {
$this->aClases[] = $clase;
}
}
class Clase {
private $nombre;
private $entrenador;
private $aAlumnos;
public function __construct(string $nombre) {
$this->nombre = $nombre;
$this->aAlumnos = [];
}
public function asignarEntrenador(Entrenador $entrenador) {
$this->entrenador = $entrenador;
$entrenador->asignarClase($this);
}
public function inscribirAlumno(Alumno $alumno) {
$this->aAlumnos[] = $alumno;
}
public function imprimirListado() {
?>
<table class="table table-bordered table-striped">
<thead class="table-dark text-center">
<tr>
<th scope="col" colspan="4">Clase: <?= $this->nombre; ?></th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row" colspan="2">Entrenador:</th>
<td colspan="2"><?= $this->entrenador->nombre; ?></td>
</tr>
<tr>
<th scope="row" colspan="4">Alumnos Inscritos:</th>
</tr>
<tr>
<th scope="col">DNI</th>
<th scope="col">Nombre</th>
<th scope="col">Correo</th>
<th scope="col">Celular</th>
</tr>
<?php foreach ($this->aAlumnos as $alumno): ?>
<tr>
<td><?= $alumno->dni ?></td>
<td><?= $alumno->nombre ?></td>
<td><?= $alumno->correo ?></td>
<td><?= $alumno->celular ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<?php
}
public function __get(string $propiedad) { return $this->$propiedad; }
public function __set(string $propiedad, $valor) { $this->$propiedad = $valor; }
}
//Programa
$entrenador1 = new Entrenador("34987789", "Miguel Ocampo", "[email protected]", "11678634");
$entrenador2 = new Entrenador("28987589", "Andrea Zarate", "[email protected]", "11768654");
$alumno1 = new Alumno("40787657", "Dante Montera", "[email protected]", "1145362457", "1997-08-28");
$alumno1->setFichaMedica(90, 178, true);
$alumno1->presentismo = 88;
$alumno2 = new Alumno("46766547", "Darío Turchi", "[email protected]", "1145632457", "1986-11-21");
$alumno2->setFichaMedica(73, 168, false);
$alumno2->presentismo = 68;
$alumno3 = new Alumno("39765454", "Facundo Fagnano", "[email protected]", "1145632457", "1993-02-06");
$alumno3->setFichaMedica(90, 187, true);
$alumno3->presentismo = 88;
$alumno4 = new Alumno("41687536", "Gastón Aguilar", "[email protected]", "1145632457", "1999-11-02");
$alumno4->setFichaMedica(70, 169, false);
$alumno4->presentismo = 98;
$clase1 = new Clase("Funcional");
$clase1->asignarEntrenador($entrenador1);
$clase1->inscribirAlumno($alumno1);
$clase1->inscribirAlumno($alumno3);
$clase1->inscribirAlumno($alumno4);
// $clase1->imprimirListado();
$clase2 = new Clase("Zumba");
$clase2->asignarEntrenador($entrenador2);
$clase2->inscribirAlumno($alumno1);
$clase2->inscribirAlumno($alumno2);
$clase2->inscribirAlumno($alumno3);
// $clase2->imprimirListado();
?>
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gimnasio</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=" crossorigin="anonymous">
</head>
<body>
<main class="container">
<div class="row">
<div class="col-12 text-center mt-1">
<h1>Gimnasio</h1>
</div>
<div class="col-12 mt-5">
<?php $clase1->imprimirListado(); ?>
</div>
<div class="col-12 mt-5">
<?php $clase2->imprimirListado(); ?>
</div>
</div>
</main>
</body>
</html>