summaryrefslogtreecommitdiffstats
path: root/admin/WebConsole/principal/aulas.php
diff options
context:
space:
mode:
authoradv <adv@uma.es>2011-02-23 19:05:23 +0000
committeradv <adv@uma.es>2011-02-23 19:05:23 +0000
commit58d08a2da3bdfac6b12a0f037377dc5e972eac9f (patch)
tree20611a5756ed8899cc1455b534281ccd9fa00789 /admin/WebConsole/principal/aulas.php
parent006da8f0e62bcd378ecd45df251cf1ba1be66532 (diff)
integrando modulos web version 1.0 ticket:301
git-svn-id: https://opengnsys.es/svn/branches/version1.0@1482 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'admin/WebConsole/principal/aulas.php')
-rw-r--r--admin/WebConsole/principal/aulas.php66
1 files changed, 66 insertions, 0 deletions
diff --git a/admin/WebConsole/principal/aulas.php b/admin/WebConsole/principal/aulas.php
index bcb68755..51f16f63 100644
--- a/admin/WebConsole/principal/aulas.php
+++ b/admin/WebConsole/principal/aulas.php
@@ -83,6 +83,11 @@ $XMLcontextual=ContextualXMLComandos($LITAMBITO_GRUPOSORDENADORES,$AMBITO_GRUPOS
echo $flotante->CreaMenuContextual($XMLcontextual);
$XMLcontextual=ContextualXMLComandos($LITAMBITO_ORDENADORES,$AMBITO_ORDENADORES);
echo $flotante->CreaMenuContextual($XMLcontextual);
+
+// Crea submenu contextual de clase de gestion de arranque pxe
+$XMLcontextual=ContextualXMLNetBoot(); // Crea submenu contextual de acciones
+echo $flotante->CreaMenuContextual($XMLcontextual);
+
//___________________________________________________________________________________________________
?>
</BODY>
@@ -342,6 +347,8 @@ function ContextualXMLGruposAulas(){
$layerXML.=' clase="menu_contextual"';
$layerXML.='>';
+
+
$layerXML.='<ITEM';
$layerXML.=' alpulsar="ver_aulas()"';
$layerXML.=' textoitem='.$TbMsg[1];
@@ -354,6 +361,12 @@ function ContextualXMLGruposAulas(){
$layerXML.=' textoitem='.$TbMsg[6];
$layerXML.='></ITEM>';
+ $layerXML.='<ITEM';
+ $layerXML.=' subflotante="flo_netboot"';
+ $layerXML.=' imgitem="../images/iconos/ordenadores.gif"';
+ $layerXML.=' textoitem="NetBoot Gestion"';
+ $layerXML.='></ITEM>';
+
$layerXML.='<SEPARADOR>';
$layerXML.='</SEPARADOR>';
@@ -456,6 +469,12 @@ function ContextualXMLAulas(){
$layerXML.=' clase="menu_contextual"';
$layerXML.='>';
+ $layerXML.='<ITEM';
+ $layerXML.=' subflotante="flo_netboot"';
+ $layerXML.=' imgitem="../images/iconos/ordenadores.gif"';
+ $layerXML.=' textoitem="NetBoot Gestion"';
+ $layerXML.='></ITEM>';
+
$layerXML.='<ITEM';
$layerXML.=' alpulsar="ver_aulas()"';
$layerXML.=' textoitem='.$TbMsg[1];
@@ -646,6 +665,12 @@ function ContextualXMLGruposOrdenadores(){
$layerXML.=' clase="menu_contextual"';
$layerXML.='>';
+ $layerXML.='<ITEM';
+ $layerXML.=' subflotante="flo_netboot"';
+ $layerXML.=' imgitem="../images/iconos/ordenadores.gif"';
+ $layerXML.=' textoitem="NetBoot Gestion"';
+ $layerXML.='></ITEM>';
+
$layerXML.='<ITEM';
$layerXML.=' alpulsar="ver_aulas()"';
$layerXML.=' textoitem='.$TbMsg[1];
@@ -772,6 +797,13 @@ function ContextualXMLOrdenadores(){
$layerXML.='<SEPARADOR>';
$layerXML.='</SEPARADOR>';
+
+ $layerXML.='<ITEM';
+ $layerXML.=' alpulsar="ver_log('.$AMBITO_ORDENADORES.')"';
+ $layerXML.=' imgitem="../images/iconos/acciones.gif"';
+ $layerXML.=' textoitem="Log"';
+ $layerXML.='></ITEM>';
+
$layerXML.='<ITEM';
$layerXML.=' alpulsar="mover_ordenador()"';
@@ -887,4 +919,38 @@ function ContextualXMLComandos($litambito,$ambito){
return($finallayerXML);
}
}
+
+function ContextualXMLNetBoot(){
+ #global $TbMsg;
+ #global $EJECUCION_COMANDO;
+ #global $EJECUCION_TAREA;
+ #global $EJECUCION_TRABAJO;
+
+ $layerXML='<MENUCONTEXTUAL';
+ $layerXML.=' idctx="flo_netboot"';
+ $layerXML.=' maxanchu=190';
+ $layerXML.=' swimg=1';
+ $layerXML.=' clase="menu_contextual"';
+ $layerXML.='>';
+
+
+//adv compatiblidad Gestor de arranque remoto
+ $layerXML.='<ITEM';
+ $layerXML.=' alpulsar="ver_boot()"';
+ $layerXML.=' textoitem="NetBoot AVANZADO"';
+ $layerXML.=' imgitem="../images/iconos/ordenadores.gif"';
+ $layerXML.='></ITEM>';
+//adv compatiblidad Gestor de arranque remoto
+//adv compatiblidad Configurador de Startpages
+ // $layerXML.='<ITEM';
+ // $layerXML.=' alpulsar="ver_startpages()"';
+ // $layerXML.=' textoitem="Gestor Startpages"';
+ // $layerXML.=' imgitem="../images/iconos/ordenadores.gif"';
+ // $layerXML.='></ITEM>';
+//adv compatiblidad Configurador de Startpages
+
+ $layerXML.='</MENUCONTEXTUAL>';
+ return($layerXML);
+}
+
?>