diff options
author | Irina Gómez <irinagomez@us.es> | 2018-10-11 08:29:30 +0000 |
---|---|---|
committer | Irina Gómez <irinagomez@us.es> | 2018-10-11 08:29:30 +0000 |
commit | bb3f68933887950c3e7e51402896625a3455d8a5 (patch) | |
tree | 28057eeccd459054831f21680f69a40d6a2b542e /admin/WebConsole/principal/manual.php | |
parent | 2a0c332424296d966dfc5431c5e3fd9a0aab1995 (diff) |
#867 Se incluyen pagina para el manual de usuarios y ficheros de idiomas. La versión se toma del fichero VERSION.json
Diffstat (limited to 'admin/WebConsole/principal/manual.php')
-rw-r--r-- | admin/WebConsole/principal/manual.php | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/admin/WebConsole/principal/manual.php b/admin/WebConsole/principal/manual.php new file mode 100644 index 00000000..5bd2259f --- /dev/null +++ b/admin/WebConsole/principal/manual.php @@ -0,0 +1,59 @@ +<?php +// **************************************************************************************** +// Aplicacion WEB: ogAdmWebCon +// autor: Irina Gomez, ETSII Universidad de Sevilla +// Fecha: 2018-10-11 +// Descripción : Página de indice del manual de usuario +// **************************************************************************************** + +// Obtenemos nombres de los temas del manual +//ruta manual usuario +$nombredir = '../userManual'; +$directorio=opendir($nombredir); +//obtenemos un archivo y luego otro sucesivamente +while ($archivo = readdir($directorio)) +{ + if (is_dir($archivo)) continue; + if ($archivo == '.' || $archivo == '..') continue; + $fichero[] = $archivo; +} + +sort($fichero); + +$temas = ''; +foreach ($fichero as $ficheros) { + $temas .=' <p><a href="'.$nombredir.'/'.$ficheros.'" target=miframeflotante >'.$ficheros.'</a></P>'."\n"; +} +?> + +<!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> </p> + <p> </p> + <p> </p> + <p> </p> + <p><img alt='OpenGnsys' src='../images/iconos/logoopengnsys.png' /></p></td> + <td width='61%'> + <?php echo $temas ?> + </td> + </tr> + +</table> + +<table width='100%' height='100%' border='0'> + <tr > + <td align='center' > + <?php echo '<iframe id=miframeflotante name=miframeflotante src="'.$nombredir.'/'.$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> |