source: admin/WebConsole/comandos/Arrancar.php @ 43763e4

918-git-images-111dconfigfileconfigure-oglivegit-imageslgromero-new-oglivemainmaint-cronmount-efivarfsmultivmmultivm-ogboot-installerogClonningEngineogboot-installer-jenkinsoglive-ipv6test-python-scriptsticket-301ticket-50ticket-50-oldticket-577ticket-585ticket-611ticket-612ticket-693ticket-700ubu24tplunification2use-local-agent-oglivevarios-instalacion
Last change on this file since 43763e4 was e32794a, checked in by Ramón M. Gómez <ramongomez@…>, 6 years ago

#834: Fixing more code cleanup: file encoding, CSS units, HTML tags, and trailing spaces.

  • Property mode set to 100644
File size: 3.4 KB
RevLine 
[4329e85]1<?php
[3ec149c]2// *************************************************************************************************************************************************
3// Aplicación WEB: ogAdmWebCon
4// Autor: José Manuel Alonso (E.T.S.I.I.) Universidad de Sevilla
5// Fecha Creación: Año 2009-2010
6// Fecha Última modificación: Agosto-2010
7// Nombre del fichero: Arrancar.php
8// Descripción :
9//              Implementación del comando "Arrancar"
10// *************************************************************************************************************************************************
11include_once("../includes/ctrlacc.php");
12include_once("../clases/AdoPhp.php");
13include_once("../includes/constantes.php");
14include_once("../includes/comunes.php");
15include_once("../includes/CreaComando.php");
16include_once("../includes/HTMLSELECT.php");
17include_once("../idiomas/php/".$idioma."/comandos/arrancar_".$idioma.".php");
[86d5b32]18include_once("../idiomas/php/".$idioma."/comandos/opcionesacciones_".$idioma.".php");
[3ec149c]19//________________________________________________________________________________________________________
[69650cb]20//
[3ec149c]21include_once("./includes/capturaacciones.php");
22//________________________________________________________________________________________________________
[69650cb]23//
[3ec149c]24$cmd=CreaComando($cadenaconexion);
25if (!$cmd)
26        Header('Location: '.$pagerror.'?herror=2'); // Error de conexión con servidor B.D.
27//________________________________________________________________________________________________________
28?>
29<HTML>
30<HEAD>
[e32794a]31    <TITLE>Administración web de aulas</TITLE>
[3ec149c]32        <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
33        <LINK rel="stylesheet" type="text/css" href="../estilos.css">
34        <SCRIPT language="javascript" src="./jscripts/Arrancar.js"></SCRIPT>
35        <SCRIPT language="javascript" src="./jscripts/comunescomandos.js"></SCRIPT>
36        <SCRIPT language="javascript" src="../clases/jscripts/HttpLib.js"></SCRIPT>             
[043e67d]37        <?php echo '<SCRIPT language="javascript" src="../idiomas/javascripts/'.$idioma.'/comandos/comunescomandos_'.$idioma.'.js"></SCRIPT>'?>
[3ec149c]38</HEAD>
39<BODY>
[4329e85]40<?php
[3ec149c]41        echo '<p align=center><span class=cabeceras>'.$TbMsg[5].'&nbsp;</span><br>';
42        //________________________________________________________________________________________________________
[69650cb]43        //
[ef3ffe2]44        include_once("./includes/FiltradoAmbito.php");
[4329e85]45?>
[e32794a]46        <P align=center><SPAN class=subcabeceras><?php echo $TbMsg[7] ?></SPAN></p>
[4329e85]47        <TABLE id="tabla_conf" align=center border=0 cellPadding=1 cellSpacing=1 class=tabla_datos>
48                <TR>
49                        <TH align=center>&nbsp;&nbsp;</Th>
50                        <TH align=center>&nbsp;<?php echo $TbMsg[10] ?>&nbsp;</TH>
51                </TR>
52                <TR>
53                        <TD align=center><input type="radio" checked id="broadcast" name="metodo" value="1"></TD>
54                        <TD align=center>&nbsp;<?php echo $TbMsg[8] ?>&nbsp;</TD>
55                </TR>
56                <TR>
57                        <TD align=center><input type="radio" id="unicast" name="metodo" value="2"></TD>
58                        <TD align=center>&nbsp;<?php echo $TbMsg[9] ?>&nbsp;</TD>
59                       
60                </TR>
61        </TABLE>
62<?php
[69650cb]63        //________________________________________________________________________________________________________
64        //
[3ec149c]65        include_once("./includes/formularioacciones.php");
66        //________________________________________________________________________________________________________
[69650cb]67        //
[3ec149c]68        include_once("./includes/opcionesacciones.php");
[69650cb]69        //_______________________________________________________________________________________________________       
70       
[3ec149c]71?>
[ef3ffe2]72<SCRIPT language="javascript">
73        Sondeo();
74</SCRIPT>
[3ec149c]75</BODY>
76</HTML>
77
Note: See TracBrowser for help on using the repository browser.