diff options
author | Irina Gómez <irinagomez@us.es> | 2018-08-02 09:32:37 +0000 |
---|---|---|
committer | Irina Gómez <irinagomez@us.es> | 2018-08-02 09:32:37 +0000 |
commit | 2a0c332424296d966dfc5431c5e3fd9a0aab1995 (patch) | |
tree | 5fcc5f0cf2d890660aab2afbef1784df5c4b6488 /admin/WebConsole/principal/changelog.php | |
parent | dd52405070e45eee04988a384c7d97941d60c030 (diff) |
#867 La ayuda incluye información de las funciones, engine.cfg, changelog, etc
Diffstat (limited to 'admin/WebConsole/principal/changelog.php')
-rw-r--r-- | admin/WebConsole/principal/changelog.php | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/admin/WebConsole/principal/changelog.php b/admin/WebConsole/principal/changelog.php new file mode 100644 index 00000000..643a063d --- /dev/null +++ b/admin/WebConsole/principal/changelog.php @@ -0,0 +1,36 @@ +<?php +//********************************************************************** +// Descripción : Muestra la configuración de los clientes en engine.cfg +//********************************************************************** +include_once("../includes/ctrlacc.php"); +include_once("../idiomas/php/".$idioma."/changelog_".$idioma.".php"); + +// Añadir versión. +$versionfile="../../doc/VERSION.txt"; +$version=(file_exists ($versionfile)) ? file_get_contents($versionfile, TRUE) : ""; + +$changelogfile="../../doc/CHANGELOG.es.txt"; +$changelog=(file_exists ($changelogfile)) ? file_get_contents($changelogfile, TRUE) : ""; +?> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<html> + <head> + <title> Administración web de aulas </title> + <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> + <link rel="stylesheet" type="text/css" href="../estilos.css" /> + </head> + + <body> + + <div><p align=center class=cabeceras><img border=0 nod="aulas-1" value="Sala Virtual" style="cursor:pointer" src="../images/iconos/aula.gif" > <?php echo $TbMsg["CHANGELOG_TITULO"] ?><br> + <span id="aulas-1" class=subcabeceras><?php echo $version ?></span></p> + </div> + + <div style="margin: 0 3em 0 3em"> + <pre> + <?php echo $changelog; ?> + <pre> + </div> + </body> +</html> + |