source: admin/WebConsole/varios/msgbrowser.php @ 0a735488

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-instalacionwebconsole3
Last change on this file since 0a735488 was bab8566, checked in by adv <adv@…>, 14 years ago

version 1.0.1 #378 browser cliente, en el momento de realizar operación mostrar mensaje extra de "NO APAGAR"

git-svn-id: https://opengnsys.es/svn/branches/version1.0@1941 a21b9725-9963-47de-94b9-378ad31fedc9

  • Property mode set to 100644
File size: 2.6 KB
Line 
1<?
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 útima modificación: Marzo-2006
7// Nombre del fichero: menubrowser.php
8// Descripción :
9//              Muestra menu en el browser del cliente
10// ****************************************************************************
11$idioma="esp"; // Por defecto idoma español
12include_once("../idiomas/php/".$idioma."/msgbrowser_".$idioma.".php");
13
14$idx="";
15$msg="";
16
17if (isset($_GET["msg"])) $msg=$_GET["msg"];  // Recoge indice del mensaje
18if (isset($_GET["idx"])) $idx=$_GET["idx"];  // Recoge indice del mensaje
19
20if(!empty($msg))
21        $mensaje=UrlDecode($msg);
22else
23        $mensaje=$TbMsg[$idx];
24?>
25<HTML>
26<TITLE>Administración web de aulas</TITLE>
27<HEAD>
28        <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
29        <LINK rel="stylesheet" type="text/css" href="../estilos.css">
30        <SCRIPT language="javascript">
31
32        </SCRIPT>
33        <STYLE TYPE="text/css">
34
35        .deepsea, .deepsea TD, .deepsea TH
36        {
37        background-color:#026afe;
38        color:#FFFFFF;
39        font-family: sans-serif;
40        font-weight:600;
41        }
42
43        .tdbarra{
44                background: url('../images/iconos/barraven.png');
45                color:#FFFFFF;
46                font-family: sans-serif;
47                font-size: 12px;
48                font-weight:300;
49                BORDER-BOTTOM: #000000 1px solid;
50                BORDER-LEFT: #FFFFFF 1px solid;
51                BORDER-RIGHT: #000000 1px solid;
52                BORDER-TOP: #FFFFFF 1px solid;
53        }
54        .tdclien{
55                background: url('../images/iconos/clienven.png');
56                color:#000000;
57                font-family: sans-serif;
58                font-size: 14px;
59                font-weight:300;
60                BORDER-BOTTOM: #999999 1px solid;
61                BORDER-LEFT: #FFFFFF 1px solid;
62                BORDER-RIGHT: #999999 1px solid;
63                BORDER-TOP: #FFFFFF 1px solid;
64        }
65        </STYLE>
66</HEAD>
67<BODY>
68<?
69if(empty($idx) && empty($msg)) {
70        // No hay operaciones realizandose
71        echo '<BR><BR><BR><BR><BR>';
72        echo '<TABLE cellspacing=0 cellpadding=2 align=center border=0>';
73        echo '<TR><TD align=center><IMG border=0 src="../images/iconos/logoopengnsys.png"></TD></TR>';
74        echo '<TR><TD align=center><SPAN style="COLOR: #999999;FONT-FAMILY: Arial;FONT-SIZE: 12px;">Iniciando...</TD></TR>';
75        echo '</TR>';
76        echo '</TABLE>';
77}
78else{
79        // Se está realizando una operacion
80        echo '<h1>' . $TbMsg[23]   . ' </h1>';
81        echo '<h1>' . $TbMsg[24]   . ' </h1>';
82        echo '<BR><BR><BR>';
83        echo '<TABLE  cellspacing=0 cellpadding=2 align=center border=0>';
84        echo '<TR><TD align=center class="tdbarra">Opengnsys Browser Message</TD><TR>';
85        echo '<TR><TD class="tdclien" valign=center >&nbsp;&nbsp;&nbsp;'.$mensaje.'&nbsp;&nbsp;&nbsp;</TD></TR>';
86        echo '</TABLE>';
87}
88?>
89</BODY>
90</HTML>
Note: See TracBrowser for help on using the repository browser.