summaryrefslogtreecommitdiffstats
path: root/admin/WebConsole/principal/imagenes.php
blob: 7c0a123cc340b8660bb1e1b20cc9e141bf415384 (plain)
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
<?php
// *******************************************************************************************************
// Aplicación WEB: ogAdmWebCon
// Autor: José Manuel Alonso (E.T.S.I.I.) Universidad de Sevilla
// Fecha Creación: Año 2009-2010
// Fecha Última modificación: Noviembre-2012
// Nombre del fichero: imagenes.php
// Descripción : 
//		Administra imágenes de un determinado Centro
// ********************************************************************************************************
include_once("../includes/ctrlacc.php");
include_once("../clases/AdoPhp.php");
include_once("../clases/XmlPhp.php");
include_once("../clases/ArbolVistaXML.php");
include_once("../clases/MenuContextual.php");
include_once("../includes/constantes.php");
include_once("../includes/CreaComando.php");
include_once("../idiomas/php/".$idioma."/imagenes_".$idioma.".php");
//________________________________________________________________________________________________________

$cmd=CreaComando($cadenaconexion);
if (!$cmd)
	Header('Location: '.$pagerror.'?herror=2');  // Error de conexión con servidor B.D.
else
	$arbolXML=CreaArbol($cmd,$idcentro); // Crea el código XML del arbol 
	
// Genera vista del árbol usando como origen de datos el XML anterior
$baseurlimg="../images/signos"; // Url de las imágenes de signo
$clasedefault="texto_arbol"; // Hoja de estilo (Clase por defecto) del árbol
$arbol=new ArbolVistaXML($arbolXML,0,$baseurlimg,$clasedefault,1,0,5);

//________________________________________________________________________________________________________
?>
<HTML>
<TITLE>Administración web de aulas</TITLE>
<HEAD>
	<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
	<LINK rel="stylesheet" type="text/css" href="../estilos.css">
	<SCRIPT language="javascript" src="../clases/jscripts/ArbolVistaXML.js"></SCRIPT>
	<SCRIPT language="javascript" src="../clases/jscripts/MenuContextual.js"></SCRIPT>
	<SCRIPT language="javascript" src="../jscripts/imagenes.js"></SCRIPT>
	<SCRIPT language="javascript" src="../jscripts/opciones.js"></SCRIPT>
	<SCRIPT language="javascript" src="../jscripts/constantes.js"></SCRIPT>
	<SCRIPT language="javascript" src="../jscripts/comunes.js"></SCRIPT>	
	<SCRIPT language="javascript" src="../clases/jscripts/HttpLib.js"></SCRIPT>
	<?php echo '<SCRIPT language="javascript" src="../idiomas/javascripts/'.$idioma.'/comunes_'.$idioma.'.js"></SCRIPT>'?>
	<?php echo '<SCRIPT language="javascript" src="../idiomas/javascripts/'.$idioma.'/imagenes_'.$idioma.'.js"></SCRIPT>'?>
</HEAD>
<BODY OnContextMenu="return false">
<?php
//________________________________________________________________________________________________________

echo $arbol->CreaArbolVistaXML(); // Muestra árbol en pantalla

// Crea contextual de las imágenes
$flotante=new MenuContextual(); 
 
$XMLcontextual=CreaContextualXMLTiposImagenes($AMBITO_GRUPOSIMAGENESMONOLITICAS,
						$LITAMBITO_GRUPOSIMAGENESMONOLITICAS,
						$AMBITO_IMAGENESMONOLITICAS,
						$LITAMBITO_IMAGENESMONOLITICAS,
						$IMAGENES_MONOLITICAS);
echo $flotante->CreaMenuContextual($XMLcontextual);

$XMLcontextual=CreaContextualXMLTiposImagenes($AMBITO_GRUPOSIMAGENESBASICAS,
						$LITAMBITO_GRUPOSIMAGENESBASICAS,
						$AMBITO_IMAGENESBASICAS,
						$LITAMBITO_IMAGENESBASICAS,
						$IMAGENES_BASICAS);
echo $flotante->CreaMenuContextual($XMLcontextual);

$XMLcontextual=CreaContextualXMLTiposImagenes($AMBITO_GRUPOSIMAGENESINCREMENTALES,
						$LITAMBITO_GRUPOSIMAGENESINCREMENTALES,
						$AMBITO_IMAGENESINCREMENTALES,
						$LITAMBITO_IMAGENESINCREMENTALES,
						$IMAGENES_INCREMENTALES);
echo $flotante->CreaMenuContextual($XMLcontextual);

$XMLcontextual=CreaContextualXMLGruposImagenes($AMBITO_GRUPOSIMAGENESMONOLITICAS,
						$LITAMBITO_GRUPOSIMAGENESMONOLITICAS,
						$AMBITO_IMAGENESMONOLITICAS,
						$LITAMBITO_IMAGENESMONOLITICAS,
						$IMAGENES_MONOLITICAS);
echo $flotante->CreaMenuContextual($XMLcontextual);

$XMLcontextual=CreaContextualXMLGruposImagenes($AMBITO_GRUPOSIMAGENESBASICAS,
						$LITAMBITO_GRUPOSIMAGENESBASICAS,
						$AMBITO_IMAGENESBASICAS,
						$LITAMBITO_IMAGENESBASICAS,
						$IMAGENES_BASICAS);
echo $flotante->CreaMenuContextual($XMLcontextual);

$XMLcontextual=CreaContextualXMLGruposImagenes($AMBITO_GRUPOSIMAGENESINCREMENTALES,
						$LITAMBITO_GRUPOSIMAGENESINCREMENTALES,
						$AMBITO_IMAGENESINCREMENTALES,
						$LITAMBITO_IMAGENESINCREMENTALES,
						$IMAGENES_INCREMENTALES);
echo $flotante->CreaMenuContextual($XMLcontextual);

$XMLcontextual=CreacontextualXMLImagen($AMBITO_IMAGENESMONOLITICAS,
					$LITAMBITO_IMAGENESMONOLITICAS,
					$IMAGENES_MONOLITICAS);
echo $flotante->CreaMenuContextual($XMLcontextual);

$XMLcontextual=CreacontextualXMLImagen($AMBITO_IMAGENESBASICAS,
					$LITAMBITO_IMAGENESBASICAS,
					$IMAGENES_BASICAS);
echo $flotante->CreaMenuContextual($XMLcontextual);										

$XMLcontextual=CreacontextualXMLImagen($AMBITO_IMAGENESINCREMENTALES,
					$LITAMBITO_IMAGENESINCREMENTALES,
					$IMAGENES_INCREMENTALES);
echo $flotante->CreaMenuContextual($XMLcontextual);											
?>
</BODY>
</HTML>
<?php
// ********************************************************************************************************
//	Devuelve una cadena con formato XML con toda la información de las imáges registradas en un Centro 
//	concreto
//	Parametros: 
//		- cmd:Una comando ya operativo ( con conexión abierta)  
//		- idcentro: El identificador del centro
//________________________________________________________________________________________________________

function CreaArbol($cmd,$idcentro)
{
	// Variables globales.
	global $TbMsg;

	global $LITAMBITO_IMAGENES;
	global $AMBITO_GRUPOSIMAGENESMONOLITICAS,
			$LITAMBITO_GRUPOSIMAGENESMONOLITICAS,
			$AMBITO_IMAGENESMONOLITICAS,
			$LITAMBITO_IMAGENESMONOLITICAS,
			$IMAGENES_MONOLITICAS;
			
	global $AMBITO_GRUPOSIMAGENESBASICAS,
			$LITAMBITO_GRUPOSIMAGENESBASICAS,
			$AMBITO_IMAGENESBASICAS,
			$LITAMBITO_IMAGENESBASICAS,
			$IMAGENES_BASICAS;
			
	global $AMBITO_GRUPOSIMAGENESINCREMENTALES,
			$LITAMBITO_GRUPOSIMAGENESINCREMENTALES,
			$AMBITO_IMAGENESINCREMENTALES,
			$LITAMBITO_IMAGENESINCREMENTALES,
			$IMAGENES_INCREMENTALES;
			
	$cadenaXML='<RAIZ';
	// Atributos
	$cadenaXML.=' imagenodo="../images/iconos/imagenes.gif"';
	$cadenaXML.=' nodoid=Raiz'.$LITAMBITO_IMAGENES;
	$cadenaXML.=' infonodo="'.$TbMsg[9].'"';
	$cadenaXML.='>';
	$cadenaXML.=SubarbolXML_tiposimagenes($AMBITO_GRUPOSIMAGENESMONOLITICAS,
						$LITAMBITO_GRUPOSIMAGENESMONOLITICAS,
						$AMBITO_IMAGENESMONOLITICAS,
						$LITAMBITO_IMAGENESMONOLITICAS,
						$IMAGENES_MONOLITICAS,
						$TbMsg[11]);

	$cadenaXML.=SubarbolXML_tiposimagenes($AMBITO_GRUPOSIMAGENESBASICAS,
						$LITAMBITO_GRUPOSIMAGENESBASICAS,
						$AMBITO_IMAGENESBASICAS,
						$LITAMBITO_IMAGENESBASICAS,
						$IMAGENES_BASICAS,
						$TbMsg[12]);

	$cadenaXML.=SubarbolXML_tiposimagenes($AMBITO_GRUPOSIMAGENESINCREMENTALES,
						$LITAMBITO_GRUPOSIMAGENESINCREMENTALES,
						$AMBITO_IMAGENESINCREMENTALES,
						$LITAMBITO_IMAGENESINCREMENTALES,
						$IMAGENES_INCREMENTALES,
						$TbMsg[13]);											
	$cadenaXML.='</RAIZ>';
	return($cadenaXML);
}
//________________________________________________________________________________________________________

function SubarbolXML_tiposimagenes($ambg,$litambg,$amb,$litamb,$tipo,$msg)
{
	$cadenaXML="";
	$cadenaXML.='<TIPOSIMAGENES';
	// Atributos
	$cadenaXML.=' imagenodo="../images/iconos/carpeta.gif"';
	$cadenaXML.=' nodoid=SubRaiz-0';
	$cadenaXML.=' infonodo='.$msg;
	$cadenaXML.=' clickcontextualnodo="menu_contextual(this,' ."'TipoImagen_".$tipo."'".')"';
	$cadenaXML.='>';
	$cadenaXML.=SubarbolXML_gruposimagenes(0,$ambg,$litambg,$amb,$litamb,$tipo);
	$cadenaXML.='</TIPOSIMAGENES>';
	return($cadenaXML);
}
//________________________________________________________________________________________________________

function SubarbolXML_gruposimagenes($grupoid,$ambg,$litambg,$amb,$litamb,$tipo)
{
	global $cmd;
	global $idcentro;
	
	$cadenaXML="";
	$rs=new Recordset; 
	$cmd->texto="SELECT idgrupo,nombregrupo,grupoid 
					FROM grupos WHERE grupoid=".$grupoid." 
					AND idcentro=".$idcentro." 
					AND tipo=".$ambg." 
					ORDER BY nombregrupo";
	$rs->Comando=&$cmd; 
	//echo $cmd->texto;
	if (!$rs->Abrir()) return($cadenaXML); // Error al abrir recordset
	$rs->Primero(); 
	while (!$rs->EOF){
		$cadenaXML.='<GRUPOSIMAGENES';
		// Atributos
		$cadenaXML.=' clickcontextualnodo="menu_contextual(this,'. " 'flo_".$litambg."'" .');"';
		$cadenaXML.=' imagenodo="../images/iconos/carpeta.gif"';
		$cadenaXML.=' infonodo="'.$rs->campos["nombregrupo"].'"';
		$cadenaXML.=' nodoid="'.$litambg."-".$rs->campos["idgrupo"];
		$cadenaXML.='>';
		$cadenaXML.=SubarbolXML_gruposimagenes($rs->campos["idgrupo"],$ambg,$litambg,$amb,$litamb,$tipo);
		$cadenaXML.='</GRUPOSIMAGENES>';
		$rs->Siguiente();
	}
	$rs->Cerrar();
	$cadenaXML.=SubarbolXML_Imagenes($grupoid,$amb,$litamb,$tipo);
	return($cadenaXML);
}
//________________________________________________________________________________________________________

function SubarbolXML_Imagenes($grupoid,$amb,$litamb,$tipo)
{
	global $cmd;
	global $idcentro;	
	
	$cadenaXML="";
	$rs=new Recordset; 
	#### agp ### Añado la consulta el campo idrepositorio	####
	$cmd->texto="SELECT DISTINCT imagenes.idimagen,imagenes.descripcion,repositorios.nombrerepositorio,repositorios.ip
				FROM  imagenes ";
	// Para hallar el repositorio de las incrementales hay que buscar los datos de la imagen basica (en la propia tablas imágenes)
	if ($tipo == 3) {
	    $cmd->texto.="      INNER JOIN imagenes AS basica INNER JOIN repositorios
			        WHERE basica.idrepositorio=repositorios.idrepositorio
			        AND imagenes.imagenid=basica.idimagen AND ";
	} else {
	    $cmd->texto.="      INNER JOIN repositorios USING  (idrepositorio) WHERE ";
	}
	$cmd->texto.="          imagenes.idcentro=".$idcentro."
				AND imagenes.grupoid=".$grupoid."  
				AND imagenes.tipo=".$tipo." 
				ORDER BY imagenes.descripcion";
	//echo "<br>".$cmd->texto;
	$rs->Comando=&$cmd; 
	if (!$rs->Abrir()) return($cadenaXML); // Error al abrir recordset
	$rs->Primero(); 
	while (!$rs->EOF){
		$cadenaXML.='<IMAGEN';
		// Atributos
		$cadenaXML.=' imagenodo="../images/iconos/imagen.gif"';
		$cadenaXML.=' infonodo="'.$rs->campos["descripcion"].' ('.$rs->campos["nombrerepositorio"].')"';
		$cadenaXML.=' nodoid='.$litamb.'-'.$rs->campos["idimagen"];
		$cadenaXML.=' clickcontextualnodo="menu_contextual(this,' ."'flo_".$litamb."'" .')"';
		$cadenaXML.='>';
		$cadenaXML.='</IMAGEN>';
		$rs->Siguiente();
	}
	$rs->Cerrar();
	return($cadenaXML);
}
//________________________________________________________________________________________________________
//
//	Menús Contextuales

//________________________________________________________________________________________________________

function CreaContextualXMLTiposImagenes($ambg,$litambg,$amb,$litamb,$tipo)
{
	global $TbMsg;
	
	$layerXML='<MENUCONTEXTUAL';
	$layerXML.=' idctx="TipoImagen_'.$tipo.'"';
	$layerXML.=' maxanchu=175';
	$layerXML.=' swimg=1';
	$layerXML.=' clase="menu_contextual"';
	$layerXML.='>';

	$layerXML.='<ITEM';
	$layerXML.=' alpulsar="insertar_grupos('.$ambg.',' ."'".$litambg."'". ')"';
	$layerXML.=' imgitem="../images/iconos/carpeta.gif"';
	$layerXML.=' textoitem='.$TbMsg[0];
	$layerXML.='></ITEM>';
	
	$layerXML.='<ITEM';
	$layerXML.=' alpulsar="insertar_imagen(\''.$litamb.'\','.$tipo.')"';
	$layerXML.=' imgitem="../images/iconos/imagen.gif"';
	$layerXML.=' textoitem='.$TbMsg[1];
	$layerXML.='></ITEM>';

	$layerXML.='<SEPARADOR>';
	$layerXML.='</SEPARADOR>';

	$wParam="../gestores/gestor_imagenes.php";

	$layerXML.='<ITEM';
	$layerXML.=' alpulsar="colocar('."'".$wParam."'".','.$tipo.')"';
	$layerXML.=' imgitem="../images/iconos/colocar.gif"';
	$layerXML.=' textoitem='.$TbMsg[2];
	$layerXML.='></ITEM>';

	$layerXML.='</MENUCONTEXTUAL>';
	return($layerXML);
}
//________________________________________________________________________________________________________

function CreaContextualXMLGruposImagenes($ambg,$litambg,$amb,$litamb,$tipo)
{
	global $TbMsg;
	
	$layerXML='<MENUCONTEXTUAL';
	$layerXML.=' idctx="flo_'.$litambg.'"';
	$layerXML.=' maxanchu=175';
	$layerXML.=' swimg=1';
	$layerXML.=' clase="menu_contextual"';
	$layerXML.='>';

	$layerXML.='<ITEM';
	$layerXML.=' alpulsar="insertar_grupos('.$ambg.',' ."'".$litambg."'". ')"';
	$layerXML.=' imgitem="../images/iconos/carpeta.gif"';
	$layerXML.=' textoitem='.$TbMsg[0];
	$layerXML.='></ITEM>';
	
	$layerXML.='<ITEM';
	$layerXML.=' alpulsar="insertar_imagen(\''.$litamb.'\','.$tipo.')"';
	$layerXML.=' imgitem="../images/iconos/imagen.gif"';
	$layerXML.=' textoitem='.$TbMsg[1];
	$layerXML.='></ITEM>';

	$layerXML.='<SEPARADOR>';
	$layerXML.='</SEPARADOR>';

	$wParam="../gestores/gestor_imagenes.php";

	$layerXML.='<ITEM';
	$layerXML.=' alpulsar="colocar('."'".$wParam."'".','.$tipo.')"';
	$layerXML.=' imgitem="../images/iconos/colocar.gif"';
	$layerXML.=' textoitem='.$TbMsg[2];
	$layerXML.='></ITEM>';

	$layerXML.='<SEPARADOR>';
	$layerXML.='</SEPARADOR>'; 

	$layerXML.='<ITEM';
	$layerXML.=' alpulsar="modificar_grupos()"';
	$layerXML.=' imgitem="../images/iconos/modificar.gif"';
	$layerXML.=' textoitem='.$TbMsg[7];
	$layerXML.='></ITEM>';

	$layerXML.='<ITEM';
	$layerXML.=' alpulsar="eliminar_grupos()"';
	$layerXML.=' imgitem="../images/iconos/eliminar.gif"';
	$layerXML.=' textoitem='.$TbMsg[4];
	$layerXML.='></ITEM>';

	$layerXML.='</MENUCONTEXTUAL>';
	return($layerXML);
}
//__________________________________________________________________________________________

function CreacontextualXMLImagen($amb,$litamb,$tipo)
{
	global $TbMsg;

	$layerXML='<MENUCONTEXTUAL';
	$layerXML.=' idctx="flo_'.$litamb.'"';
	$layerXML.=' maxanchu=150';
	$layerXML.=' swimg=1';
	$layerXML.='>';

	$layerXML.='<ITEM';
	$layerXML.=' alpulsar="muestra_informacion()"';
	$layerXML.=' textoitem='.$TbMsg[5];
	$layerXML.=' imgitem="../images/iconos/informacion.gif"';
	$layerXML.='></ITEM>';

	$layerXML.='<SEPARADOR>';
	$layerXML.='</SEPARADOR>';

	$layerXML.='<ITEM';
	$layerXML.=' alpulsar="mover('.$tipo.')"';
	$layerXML.=' imgitem="../images/iconos/mover.gif"';
	$layerXML.=' textoitem='.$TbMsg[6];
	$layerXML.='></ITEM>';

	$layerXML.='<SEPARADOR>';
	$layerXML.='</SEPARADOR>';

	$layerXML.='<ITEM';
	$layerXML.=' alpulsar="modificar_imagen('.$tipo.')"';	
	$layerXML.=' textoitem='.$TbMsg[7];
	$layerXML.=' imgitem="../images/iconos/propiedades.gif"';
	$layerXML.='></ITEM>';

	$layerXML.='<ITEM';
	$layerXML.=' alpulsar="eliminar_imagen('.$tipo.')"';	
	$layerXML.=' imgitem="../images/iconos/eliminar.gif"';
	$layerXML.=' textoitem='.$TbMsg[8];
	$layerXML.='></ITEM>';

	$layerXML.='</MENUCONTEXTUAL>';
	return($layerXML);
}
?>