source: admin/WebConsole/principal/engine.php @ 5f0c2dd

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 5f0c2dd was 74210df, checked in by Irina Gómez <irinagomez@…>, 7 years ago

#867 Página de ayuda: cambio estilo e índices de array de mensajes en inglés.

  • Property mode set to 100644
File size: 1.3 KB
Line 
1<?php
2//**********************************************************************
3// Descripción : Muestra la configuración de los clientes en engine.cfg
4//**********************************************************************
5include_once("../includes/ctrlacc.php");
6include_once("../idiomas/php/".$idioma."/ayuda_".$idioma.".php");
7
8$cfgfile="../../client/etc/engine.cfg";
9$config=(file_exists ($cfgfile)) ? file_get_contents($cfgfile, TRUE) : "No hay acceso al fichero de configuración";
10?>
11<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
12<html>
13    <head>
14        <title> Administración web de aulas </title>
15        <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
16        <link rel="stylesheet" type="text/css" href="../estilos.css" />
17    </head>
18
19    <body>
20
21        <div><p align=center class=cabeceras><img  border=0 nod="aulas-1" value="Sala Virtual" style="cursor:pointer" src="../images/iconos/aula.gif" >&nbsp;&nbsp;<?php echo $TbMsg["ENGINE_TITLE"] ?><br>
22        <span id="aulas-1" class=subcabeceras><?php echo $TbMsg["ENGINE_SUBTITLE"] ?></span></p>
23        </div>
24
25        <div style="margin: 0 3em 0 3em">
26        <pre>
27        <?php echo $config; ?>
28        <pre>
29        </div>
30    </body>
31</html>
32
Note: See TracBrowser for help on using the repository browser.