-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu_sup.php
120 lines (118 loc) · 4.19 KB
/
menu_sup.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
<?php
//En función de la sección en la que estemos, el valor de la variable url variará:
$url='http://'.$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'];
echo ' <!--Datos, Logotipo e Icono de cierre de sesión-->
<table width="80%" border="0" class="petarda" align="center" cellspacing="3" cellpadding="3" >
<tr>
<td width="25%" class="datos">
SERVIDOR: <b>'.$_SESSION["servidor"].'</b><br/><br/>
USUARIO ACTUAL: <b>'.$_SESSION["usuario"].'</b><br/><br/>
</td>
<td width="50%" align="center">
<a href="home.php" class="logotipo"> <h1 align="center"> FTP-WEB</h1> </a>
</td>
<td witdth="25%" align="center">
<font color="green"> <b>Cerrar Sesión</b></font><br/>
<a href="cerrar.php" align="center" onclick="return confirmar()">
<img src="img/exit.PNG" align="center" title="Cerrar Sesion" width="50" height="50" alt="Cerrar Sesion"></a>
</td>
</tr>
</table>
<br/>
<br/>
<table width="80%" border="0" class="petarda" align="center" cellspacing="3" cellpadding="3" >
<tr>
<td class="datos">
DIRECTORIO ACTUAL: <b>'.str_replace('//', '/',$_SESSION["carpeta_actual"]).'</b><br/><br/>
</td>
</tr>
</table>
<!--Tabla con los botones que dirigen a las diferentes secciones-->
<table width="80%" border="0" align="center" cellspacing="3" cellpadding="3" >
<tr>
<td width="20%"align="center" class="enlaces';
if (strpos($url,'descargar')!== false) {
echo ' seleccionado';
}else echo' ajeno';
echo '">
Descargar fichero
</td>
<td width="20%" align="center" class="enlaces';
if (strpos($url,'subida')!== false) {
echo ' seleccionado';
}else echo' ajeno';
echo '">
Subir fichero
</td>
<td width="20%" align="center" class="enlaces';
if (strpos($url,'borrar')!== false) {
echo ' seleccionado';
}else echo' ajeno';
echo '">
Borrar
</td>
<td width="20%" align="center" class="enlaces';
if (strpos($url,'crear')!== false) {
echo ' seleccionado';
}else echo' ajeno';
echo '">
Crear Directorio
</td>
<td width="20%" align="center" class="enlaces';
if (strpos($url,'renombrar')!== false) {
echo ' seleccionado';
}else echo' ajeno';
echo '">
Renombrar
</td>
</tr>
<tr>
<td>
<div align="center">
<a href="descargar.php" class="button"/><img class="zoomIt';
if (strpos($url,'descargar')!== false) {
echo ' seleccionado2';
}else echo' ajeno2';
echo ' " src="img/download.PNG" title="Descargar fichero" width="50" height="50" alt="Descargar fichero"></a>
</div>
</td>
<td>
<div align="center">
<a href="subida.php" class="button"/><img class="zoomIt';
if (strpos($url,'subida')!== false) {
echo ' seleccionado2';
}else echo' ajeno2';
echo '" src="img/upload_file.PNG" title="Subir fichero" width="50" height="50" alt="Subir fichero"></a>
</div>
</td>
<td>
<div align="center">
<a href="borrar.php" class="button"/><img class="zoomIt';
if (strpos($url,'borrar')!== false) {
echo ' seleccionado2';
}else echo' ajeno2';
echo ' " src="img/borrar.PNG" title="Borrar" width="50" height="50" alt="Borrar"></a>
</div>
</td>
<td>
<div align="center">
<a href="crear.php" class="button"/><img class="zoomIt';
if (strpos($url,'crear')!== false) {
echo ' seleccionado2';
}else echo' ajeno2';
echo '" src="img/directorio.PNG" title="Crear directorio" width="50" height="50" alt="Crear directorio"></a>
</div>
</td>
<td>
<div align="center">
<a href="renombrar.php" class="button"/><img class="zoomIt';
if (strpos($url,'renombrar')!== false) {
echo ' seleccionado2';
}else echo' ajeno2';
echo '" src="img/modificar.PNG" title="Renombrar" width="50" height="50" alt="Renombrar"> </a>
</div>
</td>
</tr>
</table>
';
?>