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
|
<?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: Agosto-2010
// Nombre del fichero: repositorios.php
// Descripción :
// Administra los repositorios de un determinado Centro
// *************************************************************************************************************************************************
include_once("../includes/ctrlacc.php");
include_once("../includes/arbol.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."/repositorios_".$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 arbol XML con todos los datos del Centro
// Creación del árbol
$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);
$flotante=new MenuContextual(); // Crea objeto MenuContextual
$XMLcontextual=ContextualXMLComandos($LITAMBITO_CENTROS,$AMBITO_CENTROS);
//echo $flotante->CreaMenuContextual($XMLcontextual);
//________________________________________________________________________________________________________
?>
<HTML>
<HEAD>
<TITLE>Administración web de aulas</TITLE>
<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/repositorios.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>'?>
</HEAD>
<!-- BODY OnContextMenu="return false" -->
<BODY >
<FORM name="fcomandos" action="" method="post" target="frame_contenidos">
<INPUT type="hidden" name="idcomando" value="">
<INPUT type="hidden" name="descricomando" value="">
<INPUT type="hidden" name="ambito" value="">
<INPUT type="hidden" name="idambito" value="">
<INPUT type="hidden" name="nombreambito" value="">
<INPUT type="hidden" name="gestor" value="">
<INPUT type="hidden" name="funcion" value="">
</FORM>
<?php
//________________________________________________________________________________________________________
echo $arbol->CreaArbolVistaXML(); // Crea árbol (HTML) a partir del XML
$flotante=new MenuContextual(); // Crea objeto MenuContextual
// Crea contextual de repositorios
$XMLcontextual=CreacontextualXMLRepositorios();
echo $flotante->CreaMenuContextual($XMLcontextual);
$XMLcontextual=CreacontextualXMLGruposRepositorios(); // Grupos de repositorios
echo $flotante->CreaMenuContextual($XMLcontextual);
$XMLcontextual=CreacontextualXMLRepositorio(); // Repositorio
echo $flotante->CreaMenuContextual($XMLcontextual);
?>
</BODY>
</HTML>
<?php
// *************************************************************************************************************************************************
// Devuelve una cadena con formato XML de toda la información de los repositorios de un Centro concreto
// Parametros:
// - cmd:Una comando ya operativo ( con conexión abierta)
// - idcentro: El identificador del centro
//________________________________________________________________________________________________________
function CreaArbol($cmd,$idcentro)
{
global $TbMsg;
global $LITAMBITO_REPOSITORIOS;
$cadenaXML='<REPOSITORIOS';
// Atributos
$cadenaXML.=' imagenodo="../images/iconos/repositorio.gif"';
$cadenaXML.=' clickcontextualnodo="menu_contextual(this,' ."'flo_Raiz".$LITAMBITO_REPOSITORIOS."'" .')"';
$cadenaXML.=' nodoid=Raiz'.$LITAMBITO_REPOSITORIOS;
$cadenaXML.=' infonodo='.$TbMsg[12];
$cadenaXML.='>';
$cadenaXML.=SubarbolXML_grupos_repositorios($cmd,$idcentro,0);
$cadenaXML.='</REPOSITORIOS>';
return($cadenaXML);
}
// ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
function SubarbolXML_grupos_repositorios($cmd,$idcentro,$grupoid){
global $LITAMBITO_GRUPOSREPOSITORIOS;
global $AMBITO_GRUPOSREPOSITORIOS;
global $LITAMBITO_REPOSITORIOS;
$cadenaXML="";
$rs=new Recordset;
$cmd->texto="SELECT idgrupo,nombregrupo,grupoid FROM grupos WHERE grupoid=".$grupoid." AND idcentro=".$idcentro." AND tipo=".$AMBITO_GRUPOSREPOSITORIOS." ORDER BY nombregrupo";
$rs->Comando=&$cmd;
if (!$rs->Abrir()) return($cadenaXML); // Error al abrir recordset
$rs->Primero();
while (!$rs->EOF){
$cadenaXML.='<GRUPOSREPOSITORIOS ';
// Atributos
$cadenaXML.=' imagenodo="../images/iconos/carpeta.gif"';
$cadenaXML.=' clickcontextualnodo="menu_contextual(this,'. " 'flo_".$LITAMBITO_GRUPOSREPOSITORIOS."'" .');"';
$cadenaXML.=' infonodo="'.$rs->campos["nombregrupo"].'"';
$cadenaXML.=' nodoid='.$LITAMBITO_GRUPOSREPOSITORIOS.'-'.$rs->campos["idgrupo"];
$cadenaXML.='>';
$cadenaXML.=SubarbolXML_grupos_repositorios($cmd,$idcentro,$rs->campos["idgrupo"]);
$cadenaXML.='</GRUPOSREPOSITORIOS>';
$rs->Siguiente();
}
$rs->Cerrar();
$cmd->texto="SELECT idrepositorio,nombrerepositorio FROM repositorios WHERE grupoid=".$grupoid." AND idcentro=".$idcentro." order by idrepositorio desc" ;
$rs->Comando=&$cmd;
if (!$rs->Abrir()) return($cadenaXML); // Error al abrir recordset
$rs->Primero();
while (!$rs->EOF){
$cadenaXML.='<REPOSITORIO';
// Atributos
$cadenaXML.=' clickcontextualnodo="menu_contextual(this,' ."'flo_".$LITAMBITO_REPOSITORIOS."'" .')"';
$cadenaXML.=' imagenodo="../images/iconos/repositorio.gif" ';
$cadenaXML.=' infonodo="'.$rs->campos["nombrerepositorio"].'"';
$cadenaXML.=' nodoid='.$LITAMBITO_REPOSITORIOS.'-'.$rs->campos["idrepositorio"];
$cadenaXML.='>';
$cadenaXML.='</REPOSITORIO>';
$rs->Siguiente();
}
$rs->Cerrar();
return($cadenaXML);
}
//________________________________________________________________________________________________________
//
// Menús Contextuales
//________________________________________________________________________________________________________
function CreacontextualXMLRepositorios(){
global $AMBITO_REPOSITORIOS;
global $AMBITO_GRUPOSREPOSITORIOS;
global $LITAMBITO_GRUPOSREPOSITORIOS;
global $LITAMBITO_REPOSITORIOS;
global $TbMsg;
$layerXML='<MENUCONTEXTUAL';
$layerXML.=' idctx="flo_Raiz'.$LITAMBITO_REPOSITORIOS.'"';
$layerXML.=' maxanchu=185';
$layerXML.=' swimg=1';
$layerXML.=' clase="menu_contextual"';
$layerXML.='>';
$layerXML.='<ITEM';
$layerXML.=' alpulsar="insertar_grupos('.$AMBITO_GRUPOSREPOSITORIOS.',' . "'".$LITAMBITO_GRUPOSREPOSITORIOS."'" . ')"';
$layerXML.=' imgitem="../images/iconos/carpeta.gif"';
$layerXML.=' textoitem='.$TbMsg[0];
$layerXML.='></ITEM>';
$wLeft=140;
$wTop=115;
$wWidth=550;
$wHeight=280;
$wpages="../propiedades/propiedades_repositorios.php";
$wParam=$wLeft .",".$wTop.",".$wWidth.",".$wHeight.",'". $wpages."'";
$layerXML.='<ITEM';
$layerXML.=' alpulsar="insertar('.$wParam.')"';
$layerXML.=' imgitem="../images/iconos/aula.gif"';
$layerXML.=' textoitem='.$TbMsg[1];
$layerXML.='></ITEM>';
$layerXML.='<SEPARADOR>';
$layerXML.='</SEPARADOR>';
$wParam="../gestores/gestor_repositorios.php";
$layerXML.='<ITEM';
$layerXML.=' alpulsar="colocar('."'".$wParam."'".','.$AMBITO_REPOSITORIOS.')"';
$layerXML.=' imgitem="../images/iconos/colocar.gif"';
$layerXML.=' textoitem='.$TbMsg[2];
$layerXML.='></ITEM>';
$layerXML.='</MENUCONTEXTUAL>';
return($layerXML);
}
//________________________________________________________________________________________________________
function CreacontextualXMLGruposRepositorios(){
global $AMBITO_REPOSITORIOS;
global $AMBITO_GRUPOSREPOSITORIOS;
global $LITAMBITO_GRUPOSREPOSITORIOS;
global $TbMsg;
$layerXML='<MENUCONTEXTUAL';
$layerXML.=' idctx="flo_'.$LITAMBITO_GRUPOSREPOSITORIOS.'"';
$layerXML.=' maxanchu=185';
$layerXML.=' swimg=1';
$layerXML.=' clase="menu_contextual"';
$layerXML.='>';
$layerXML.='<ITEM';
$layerXML.=' alpulsar="insertar_grupos('.$AMBITO_GRUPOSREPOSITORIOS.',' ."'".$LITAMBITO_GRUPOSREPOSITORIOS."'". ')"';
$layerXML.=' imgitem="../images/iconos/carpeta.gif"';
$layerXML.=' textoitem='.$TbMsg[0];
$layerXML.='></ITEM>';
$wLeft=140;
$wTop=115;
$wWidth=550;
$wHeight=280;
$wpages="../propiedades/propiedades_repositorios.php";
$wParam=$wLeft .",".$wTop.",".$wWidth.",".$wHeight.",'". $wpages."'";
$layerXML.='<ITEM';
$layerXML.=' alpulsar="insertar('.$wParam.')"';
$layerXML.=' imgitem="../images/iconos/aula.gif"';
$layerXML.=' textoitem='.$TbMsg[1];
$layerXML.='></ITEM>';
$layerXML.='<SEPARADOR>';
$layerXML.='</SEPARADOR>';
$wParam="../gestores/gestor_repositorios.php";
$layerXML.='<ITEM';
$layerXML.=' alpulsar="colocar('."'".$wParam."'".','.$AMBITO_REPOSITORIOS.')"';
$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 CreacontextualXMLRepositorio(){
global $AMBITO_REPOSITORIOS;
global $LITAMBITO_REPOSITORIOS;
global $TbMsg;
$layerXML='<MENUCONTEXTUAL';
$layerXML.=' idctx="flo_'.$LITAMBITO_REPOSITORIOS.'"';
$layerXML.=' maxanchu=160';
$layerXML.=' swimg=1';
$layerXML.=' clase="menu_contextual"';
$layerXML.='>';
$layerXML.='<ITEM';
$layerXML.=' alpulsar="muestra_inforRepositorios()"';
$layerXML.=' textoitem='.$TbMsg[5];
$layerXML.=' imgitem="../images/iconos/informacion.gif"';
$layerXML.='></ITEM>';
$layerXML.='<SEPARADOR>';
$layerXML.='</SEPARADOR>';
$layerXML.='<ITEM';
$layerXML.=' alpulsar="mover('.$AMBITO_REPOSITORIOS.')"';
$layerXML.=' imgitem="../images/iconos/mover.gif"';
$layerXML.=' textoitem='.$TbMsg[6];
$layerXML.='></ITEM>';
$layerXML.='<SEPARADOR>';
$layerXML.='</SEPARADOR>';
$wLeft=140;
$wTop=115;
$wWidth=550;
$wHeight=280;
$wpages="../comandos/EliminarImagenRepositorio.php";
$wParam=$wLeft .",".$wTop.",".$wWidth.",".$wHeight.",'". $wpages."'";
$layerXML.='<ITEM';
$layerXML.=' alpulsar="modificar('.$wParam.')"';
$layerXML.=' textoitem='.$TbMsg[10];
$layerXML.=' imgitem="../images/iconos/comandos.gif"';
$layerXML.='></ITEM>';
$layerXML.='<SEPARADOR>';
$layerXML.='</SEPARADOR>';
$wLeft=140;
$wTop=115;
$wWidth=550;
$wHeight=280;
$wpages="../propiedades/propiedades_repositorios.php";
$wParam=$wLeft .",".$wTop.",".$wWidth.",".$wHeight.",'". $wpages."'";
$layerXML.='<ITEM';
$layerXML.=' alpulsar="modificar('.$wParam.')"';
$layerXML.=' textoitem='.$TbMsg[7];
$layerXML.=' imgitem="../images/iconos/propiedades.gif"';
$layerXML.='></ITEM>';
$layerXML.='<ITEM';
$layerXML.=' alpulsar="eliminar('.$wParam.')"';
$layerXML.=' imgitem="../images/iconos/eliminar.gif"';
$layerXML.=' textoitem='.$TbMsg[8];
$layerXML.='></ITEM>';
$layerXML.='</MENUCONTEXTUAL>';
return($layerXML);
}
//________________________________________________________________________________________________________
function ContextualXMLComandos($litambito,$ambito){
global $cmd;
global $TbMsg;
$maxlongdescri=0;
$descrip="";
$rs=new Recordset;
$cmd->texto="SELECT idcomando,descripcion,pagina,gestor,funcion
FROM comandos
WHERE activo=1 AND aplicambito & ".$ambito.">0
ORDER BY descripcion";
$rs->Comando=&$cmd;
if ($rs->Abrir()){
$layerXML="";
$rs->Primero();
while (!$rs->EOF){
if (isset($TbMsg["COMMAND_".$rs->campos["funcion"]])) {
$descrip=$TbMsg["COMMAND_".$rs->campos["funcion"]];
}
if (empty($descrip)) {
$descrip=$rs->campos["funcion"];
}
$layerXML.='<ITEM';
$layerXML.=' alpulsar="confirmarcomando('."'".$ambito."'".','.$rs->campos["idcomando"].',\''.$rs->campos["descripcion"].'\',\''.$rs->campos["pagina"]. '\',\''.$rs->campos["gestor"]. '\',\''.$rs->campos["funcion"]. '\')"';
$layerXML.=' textoitem="'.$descrip.'"';
$layerXML.='></ITEM>';
if ($maxlongdescri < strlen($descrip)) // Toma la Descripción de mayor longitud
$maxlongdescri=strlen($descrip);
$rs->Siguiente();
}
$layerXML.='</MENUCONTEXTUAL>';
$prelayerXML='<MENUCONTEXTUAL';
$prelayerXML.=' idctx="flo_comandos_'.$litambito.'"';
$prelayerXML.=' maxanchu='.$maxlongdescri*7;
$prelayerXML.=' clase="menu_contextual"';
$prelayerXML.='>';
$finallayerXML=$prelayerXML.$layerXML;
return($finallayerXML);
}
}
echo "<br><br>";
$nodos=nodos_arbol("repositorios");
$grupos=grupos_arbol("repositorios");
lista_raiz_arbol("repositorios", $nodos, $grupos);
?>
|