-
Notifications
You must be signed in to change notification settings - Fork 0
/
gestion_estudiantes.php
108 lines (90 loc) · 2.85 KB
/
gestion_estudiantes.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
<?php
$page["nombrePag"] = "Gestión de Usuarios";
include_once("funciones/adminF.php");
session_start();
if(!isset($_SESSION["usuario"])){
header("location:index.php");
}else if($_SESSION["usuario"]->tipo != "administrador"){
header("location:dashboard.php");
}
$adminclass = new AdminBBDD;
if(isset($_POST["token"])&&isset($_SESSION["tokens"])){
$token = $_POST["token"];
if($adminclass->comprobarToken("gestest", $token)){
$adminclass->cambiarEstadoEst();
$adminclass->eliminarUsuarios();
$adminclass->eliminarEtiquetas();
$adminclass->eliminarIdiomas();
}else{
$_SESSION["mensajeServidor"] = "El tiempo de espera ha caducado o el formulario no es válido.<br>".
"Recargue la página y vuelva a intentarlo";
}
}
/**$adminclass->cambiarEstadoEst();
$adminclass->eliminarUsuarios();*/
/*$adminclass->agregarEtiqueta();*/
/**$adminclass->eliminarEtiquetas();
$adminclass->eliminarIdiomas();*/
$idtoken = $adminclass->generarToken('gestest');
ob_start();?>
<script type="text/javascript">
filtrous();
</script>
<?php
$page["js"] = ob_get_clean();
ob_start();
?>
<h1>Gestión de estudiantes</h1>
<form method="post">
<div class="panel panel-default">
<div class="panel-heading">
<h4>
Lista de Estudiantes
</h4>
</div>
<div class="panel-body">
<table id="resultado" class="display t-responsive" cellspacing="0" width="100%">
<thead>
<tr>
<th>Seleccionar</th>
<th>Email</th>
<th>Estado</th>
<th>Nombre</th>
<th>Apellidos</th>
<th>Ciclo</th>
</tr>
</thead>
<tbody>
<?php
$adminclass->listarUsuarios();
?>
</tbody>
<tfoot>
<tr>
<th>Seleccionar</th>
<th>Email</th>
<th>Estado</th>
<th>Nombre</th>
<th>Apellidos</th>
<th>Ciclo</th>
</tr>
</tfoot>
</table>
</div>
<div class="panel-footer">
<div class="row">
<div class="col-md-12 text-right">
<input type="hidden" name="token" value="<?php echo $idtoken;?>">
<input type="submit" class="btn btn-danger" name="eliminarus" value="Eliminar selección">
<input type="submit" class="btn btn-green" name="cambiarest" value="Cambiar estado">
</div>
</div>
</div>
</div>
</form>
<!-- Fin Usuarios encontrados -->
<?php
$page["cuerpo"] = ob_get_clean();
/** Incluimos el fichero cuerpo **/
include_once("cuerpo.php");
?>