summaryrefslogtreecommitdiffstats
path: root/admin/WebConsole/principal/acercade.php
diff options
context:
space:
mode:
Diffstat (limited to 'admin/WebConsole/principal/acercade.php')
-rw-r--r--admin/WebConsole/principal/acercade.php103
1 files changed, 102 insertions, 1 deletions
diff --git a/admin/WebConsole/principal/acercade.php b/admin/WebConsole/principal/acercade.php
index 2703939e..3d1c0a91 100644
--- a/admin/WebConsole/principal/acercade.php
+++ b/admin/WebConsole/principal/acercade.php
@@ -30,6 +30,93 @@ if (file_exists ($versionfile))
?>
</p>
+<?php
+// Añadir CHANGELOG.
+$buschangelog=exec('ls ../../doc | grep CHANGELOG*', $nombrechange);
+$changelogfile="../../doc/".$buschangelog;
+?>
+<?php
+// Añadir Manual.
+$usermanual="../../doc/userManual";
+if (file_exists ($usermanual)){
+// Copiamos el directorio userManual
+system("cp -R ../../doc/userManual ../api");
+// Creamos el Inicio del Manual
+system("touch ../api/userManual/Inicio.php");
+// Añadimos instrucciones
+$ficheroinicio="../api/userManual/Inicio.php";
+
+$crearficheroinicio=fopen($ficheroinicio,"w");
+fwrite($crearficheroinicio,"
+<!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 class='acercade'>
+<table width='100%' border='0'>
+ <tr>
+ <td width='30%'><p><img src='../../images/acercade.png' alt='*' hspace='10em' vspace='10em' align='left' /></p>
+ <p>&nbsp;</p>
+ <p>&nbsp;</p>
+ <p>&nbsp;</p>
+ <p>&nbsp;</p>
+ <p><img alt='OpenGnSys' src='../../images/iconos/logoopengnsys.png' /></p></td>
+ <td width='61%'>
+
+<p>
+
+
+
+<?php
+\$directorio = opendir('.'); //ruta actual
+while (\$archivo = readdir(\$directorio)) //obtenemos un archivo y luego otro sucesivamente
+{
+ if (is_dir(\$archivo))//verificamos si es o no un directorio
+ {
+ if (\$archivo == '.' || \$archivo == '..')
+ {}else{
+ echo '['.\$archivo . ']<br />'; //de ser un directorio lo envolvemos entre corchetes
+ }
+ }
+ else
+ {
+ if (\$archivo == 'Inicio.php' || \$archivo == '.' || \$archivo == '..')
+ {}else{
+ \$fichero[] = \$archivo;
+ }
+ }
+}
+sort(\$fichero);
+foreach (\$fichero as \$ficheros) {
+ echo '<P><a href='.\$ficheros.' target=miframeflotante >'.\$ficheros.'</a></P>';
+}
+
+?>
+
+ </td>
+ </tr>
+
+</table>
+
+<table width='100%' height='100%' border='0'>
+ <tr >
+ <td align='center' >
+ <?php echo '<iframe id=miframeflotante name=miframeflotante src='.\$fichero[0].' width=100% height=700 frameborder=0 scrolling=no marginwidth=0 marginheight=0 align=left>Tu navegador no soporta frames!!</iframe>';
+ ?>
+ </td>
+ </tr>
+</table>
+");
+fclose($crearficheroinicio);
+
+
+}
+?>
+
<p><strong><?php echo $TbMsg["TITLE"] ?></strong></p>
@@ -38,6 +125,20 @@ if (file_exists ($versionfile))
<p><?php echo $TbMsg["LICENSE"] ?> <a href="http://www.gnu.org/licenses/gpl.html" target="_blank" ><img alt="GPL v3" src="../images/gplv3-88x31.png" height="20em" /></a></p>
-<p><strong><?php echo $TbMsg["LINK"] ?> <a href="http://opengnsys.es" target="_blank" >opengnsys.es</a><strong></p>
+<p><?php
+ if (file_exists ($changelogfile)){
+ system("cp ../../doc/$buschangelog ../api");
+ echo "<strong><a href='../api/$buschangelog' target='_blank'>".$TbMsg["CHANGE"]."</a></strong>";
+ include ($versionfile);}
+?></p>
+
+<p><?php echo "<strong><a href='../api/userManual/Inicio.php' target='_blank'>".$TbMsg["MANUAL"]."</a></strong>";?></p>
+
+<p><strong><?php echo $TbMsg["LINK"]; ?> <a href="http://opengnsys.es" target="_blank" >opengnsys.es</a><strong></p>
+
+
+
+
+
</body>
</html>