Last change
on this file since 5d05b06 was
4f9b004,
checked in by Ramón M. Gómez <ramongomez@…>, 6 years ago
|
#867: REST API documentacion added to help screen.
|
-
Property mode set to
100644
|
File size:
1.2 KB
|
Rev | Line | |
---|
[2a0c332] | 1 | <?php |
---|
| 2 | //********************************************************************** |
---|
| 3 | // Descripción : Muestra la configuración de los clientes en engine.cfg |
---|
| 4 | //********************************************************************** |
---|
| 5 | include_once("../includes/ctrlacc.php"); |
---|
[aafe8f9] | 6 | include_once("../idiomas/php/".$idioma."/ayuda_".$idioma.".php"); |
---|
[2a0c332] | 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 | |
---|
[4f9b004] | 21 | <div><p align="center" class="cabeceras"><img border="0" src="../images/iconos/aula.gif" > <?php echo $TbMsg["ENGINE_TITLE"] ?><br> |
---|
| 22 | <span id="aulas-1" class="subcabeceras"><?php echo $TbMsg["ENGINE_SUBTITLE"] ?></span></p> |
---|
[2a0c332] | 23 | </div> |
---|
| 24 | |
---|
[4f9b004] | 25 | <div style="margin: 3em"> |
---|
| 26 | <pre><?php echo $config; ?><pre> |
---|
[2a0c332] | 27 | </div> |
---|
| 28 | </body> |
---|
| 29 | </html> |
---|
| 30 | |
---|
Note: See
TracBrowser
for help on using the repository browser.