-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgestion_empresas.php
121 lines (100 loc) · 3.47 KB
/
gestion_empresas.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
<?php
$page["nombrePag"] = "Filtro de empresas";
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("gesemp", $token)){
$adminclass->eliminarEmpresas();
$adminclass->cambiarEstadoEmp();
}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->eliminarEmpresas();*/
/**$adminclass->cambiarEstadoEmp();*/
/*$adminclass->modificarEmpresa();*/
/*$adminclass->nuevaEmpresa();*/
$idtoken = $adminclass->generarToken('gesemp');
ob_start();?>
<script type="text/javascript">
filtroem();
</script>
<?php
$page["js"] = ob_get_clean();
ob_start();
?>
<h1 >Gestión de empresas
</h1>
<!-- Panel resultados -->
<div class="panel panel-default">
<form method="post">
<div class="panel-heading">
<!--<h4>Resultados de la búsqueda</h4> -->
<h4>Buscar empresa</h4>
</div>
<div class="panel-body">
<table id="resempresas" class="display t-responsive" cellspacing="0" width="100%">
<thead>
<tr>
<th><i class="fa fa-list-ul" aria-hidden="true"></i></th>
<th>Seleccionar</th>
<th>Estado</th>
<th>Web</th>
<th>Email</th>
<th>Teléfono</th>
<th>Contacto</th>
</tr>
</thead>
<tfoot>
<tr>
<th><i class="fa fa-list-ul" aria-hidden="true"></i></th>
<th>Seleccionar</th>
<th>Estado</th>
<th>Web</th>
<th>Email</th>
<th>Teléfono</th>
<th>Contacto</th>
</tr>
</tfoot>
<tbody>
<?php
$adminclass->listarEmpresas();
?>
<!--<tr>
<td><button type="submit" name="agregaremp" class="btn btn-success">
<i class="fa fa-plus" aria-hidden="true"></i>
</button></td>
<td><input type="text" name="nemp" ></td>
<td><input type="text" name="webemp"></td>
<td><input type="text" name="mailemp" ></td>
<td><input type="text" name="telfemp"></td>
<td><input type="text" name="contemp"></td>
</tr>-->
</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="submit" class="btn btn-danger" name="eliminaremp" value="Eliminar selección">
<input type="submit" name="cambiarest" value="Cambiar estado" class="btn btn-success">
</div>
</div>
</div>
</form>
</div>
<!-- Fin Panel resultados -->
<?php
$page["cuerpo"] = ob_get_clean();
/** Incluimos el fichero cuerpo **/
include_once("cuerpo.php");
?>