summaryrefslogtreecommitdiffstats
path: root/admin/WebConsole/gestores/gestor_ubicarordenadores.php
blob: 98c5bc2ebf8d15b09bc0de120973de9e3a33c48b (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
<?php
include_once("../includes/ctrlacc.php");
include_once("../clases/AdoPhp.php");
include_once("../clases/XmlPhp.php");
include_once("../clases/MenuContextual.php");
include_once("../includes/constantes.php");
include_once("../includes/comunes.php");
include_once("../includes/CreaComando.php");
include_once("../idiomas/php/".$idioma."/aulas_".$idioma.".php");

$cmd=CreaComando($cadenaconexion);
if (!$cmd)
	Header('Location: '.$pagerror.'?herror=2'); // Error de conexión con servidor B.D.
//________________________________________________________________________________________________________


echo "<html>";
echo "<head>";
echo "<meta http-equiv='Refresh' content='1;URL=../principal/ubicarordenadores.php?idambito=". $_GET['idaula'] ."&nombreambito=" . $_GET['nombreambito'] . "&litambito=" . $_GET['litambito'] . "'>";
echo "<title> gestion de equipos </title>";
echo "<base target='principal'>";
echo "</head>";
echo "<body>";



#echo('litambito con valor:     '. $_GET['litambito']);
#echo ('idambito con valor:      ' . $_GET['idaula']);
#echo ('nombreambito con valor:      ' . $_GET['nombreambito']);
#echo "<br>";

$lista = explode(";",$_POST['listOfItems']);
foreach ($lista as $sublista) {
	$elementos = explode("|",$sublista);
	$hostname=$elementos[1];
	$grupo=$elementos[0];
	ReubicarOrdenador($cmd,$hostname,$grupo);
    #echo $elementos[0] .  $elementos[1];
    #echo "<br>";
}
echo " </body>";
echo " </html> ";

function ReubicarOrdenador($cmd,$hostname,$grupo)
{
global $cmd;
global $hostname;
global $grupo;
if ($grupo == "pxe")
{
	$cmd->CreaParametro("@grupo","0",0);
	$cmd->CreaParametro("@hostname",$hostname,0);
	$cmd->texto="update ordenadores set grupoid=@grupo where nombreordenador=@hostname";
}
else
{
	$cmd->CreaParametro("@grupo",$grupo,0);
	$cmd->CreaParametro("@hostname",$hostname,0);
	#$cmd->texto="update ordenadores set grupoid=(Select idgrupo from gruposordenadores where nombregrupoordenador=@grupo) where nombreordenador=@hostname";
	$cmd->texto="update ordenadores set grupoid=@grupo where nombreordenador=@hostname";
	
}
$cmd->Ejecutar();
#Update ordenadores Set grupoid=(Select idgrupo From gruposordenadores Where nombregrupoordenador="subgrupo1") where nombreordenador="prueba1"
}


#   <iframe src="frame_a.htm" name="frame1"></iframe>
#   <iframe src="frame_b.htm" name="frame2"></iframe>

?>

<html> <head>
   <script language="javascript">
	function actualiza_frame_principal(){
    window.parent.frames[1].location="../principal/aulas.php"
   // window.location="../nada.php"
} 
   </script>
</head>
 <body onunload="actualiza_frame_principal()"> </body>
</html>