-
Notifications
You must be signed in to change notification settings - Fork 0
/
filtro_puestos.php
106 lines (88 loc) · 2.73 KB
/
filtro_puestos.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
<?php
$page["nombrePag"] = "Filtro de puestos";
include_once("funciones/empresaF.php");
session_start();
if(!isset($_SESSION["usuario"])){
header("location:index.php");
}else if($_SESSION["usuario"]->tipo != "empresa"){
header("location:dashboard.php");
}
$empresacl = new EmpresaBBDD;
if(isset($_POST["token"])&&isset($_SESSION["tokens"])){
$token = $_POST["token"];
if($empresacl->comprobarToken("filtro", $token)){
$empresacl->eliminarPuestos();
}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";
}
}
$idtoken = $empresacl->generarToken('filtropuesto');
/**$empresacl->eliminarPuestos();*/
$empresacl->modificarPuesto();
ob_start();
?>
<h1 >Filtro de puestos
</h1>
<!--Panel Busqueda -->
<form method="post" >
<div class="panel panel-default">
<div class="panel-heading">
<h4>Buscar puesto
</h4>
</div>
<div class="panel-body">
<table id="respuestos" class="display t-responsive" cellspacing="0" width="100%">
<thead>
<tr>
<th style="">Puesto</th>
<th>Acciones</th>
<th>Provincia</th>
<th>Descripción</th>
<th>Interesados</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Puesto</th>
<th>Acciones</th>
<th>Provincia</th>
<th>Descripción</th>
<th>Interesados</th>
</tr>
</tfoot>
<tbody>
<?php
$empresacl->listarPuestos();
?>
</tbody>
</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="reset" class="btn btn-warning" name="limpiar" value="Limpiar">
<input type="submit" class="btn btn-danger" name="eliminarpst" value="Eliminar selección">
</div>
</div>
</div>
</div>
</form>
<?php
ob_start();?>
<script type="text/javascript">
filtroPuestos();
<?php
if(isset($_SESSION["etiquetas"])){
echo 'agregarEtiquetas('.$_SESSION["etiquetas"].');';
unset($_SESSION["etiquetas"]);
}
?>
</script>
<?php
$page["js"] = ob_get_clean();
$page["cuerpo"] = ob_get_clean();
/** Incluimos el fichero cuerpo **/
include_once("cuerpo.php");
?>