source: admin/WebConsole/principal/acercade.php @ d42d7c7

918-git-images-111dconfigure-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-instalacion
Last change on this file since d42d7c7 was bb3f689, checked in by Irina Gómez <irinagomez@…>, 7 years ago

#867 Se incluyen pagina para el manual de usuarios y ficheros de idiomas. La versión se toma del fichero VERSION.json

  • Property mode set to 100644
File size: 1.5 KB
RevLine 
[ae938ed]1<?php
[da69e344]2//********************************************************************
3// Descripción :
[cff57e6]4//              Pagina de informacion sobre el proyecto OpenGnsys
[da69e344]5//********************************************************************
[c751419]6include_once("../includes/ctrlacc.php");
[da69e344]7include_once("../idiomas/php/".$idioma."/acercade_".$idioma.".php");
8
9?>
[13584f9]10<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
11<html>
12<head>
13<title> Administración web de aulas </title>
14<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
[ae938ed]15<link rel="stylesheet" type="text/css" href="../estilos.css" />
16</head>
17
18<body class="acercade">
19
20<img alt="*" src="../images/acercade.png" align="left" hspace="10em" vspace="10em" />
[13584f9]21
[cff57e6]22<h1><img alt="OpenGnsys" src="../images/iconos/logoopengnsys.png" /></h1>
[13584f9]23
24<p>
25<?php
26// Añadir versión.
[bf4b65c]27$data = json_decode(@file_get_contents(__DIR__ . '/../../doc/VERSION.json'));
28if (empty($data->project)) {
29    echo "OpenGnsys";
30} else {
31    echo @$data->project.' '
32        .@$data->version.' '
33        .(isset($data->codename) ? '(<a href="'.@$data->definition.'" target="_blank">'.$data->codename.'</a>) ' : '')
34        .@$data->release;
35}
[13584f9]36?>
37</p>
38
[ae938ed]39<p><strong><?php echo $TbMsg["TITLE"] ?></strong></p>
[13584f9]40
[ae938ed]41<p><?php echo $TbMsg["DESCRIPTION"] ?> </p>
[13584f9]42
[7d54b0b]43<p><?php echo $TbMsg["LICENSE"] ?> <a href="https://www.gnu.org/licenses/gpl.html"  target="_blank" ><img alt="GPL v3"  src="../images/gplv3-88x31.png" height="20em" /></a></p>
[13584f9]44
45</body>
46</html>
Note: See TracBrowser for help on using the repository browser.