diff options
author | Irina Gómez <irinagomez@us.es> | 2019-09-06 13:10:56 +0200 |
---|---|---|
committer | Irina Gómez <irinagomez@us.es> | 2019-09-06 13:10:56 +0200 |
commit | c1bee01aa1796ae51b3d0016d96e9e9f3b88681f (patch) | |
tree | fc36862e68a9d19c6e711defbf5278f21bf8d109 /admin/WebConsole/nada.php | |
parent | ba5651bcb9bd09e791f96d0d15444eb1924da0d2 (diff) |
#858 Messages and images for tip of the day are included.
Diffstat (limited to 'admin/WebConsole/nada.php')
-rw-r--r-- | admin/WebConsole/nada.php | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/admin/WebConsole/nada.php b/admin/WebConsole/nada.php index 9e0aa255..8861cb50 100644 --- a/admin/WebConsole/nada.php +++ b/admin/WebConsole/nada.php @@ -1,6 +1,20 @@ <?php +/** + * @file nada.php + * @brief Muestra el marco derecho "por defecto" cuando no se ejecuta un comando. + * @version 1.1.1 - Se incluyen consejos del día la primera vez que se entra. + * @date 2019-09-06 + */ + include_once("./includes/ctrlacc.php"); include_once("./idiomas/php/".$idioma."/nada_".$idioma.".php"); + +// ################### Consejo del día ################# // +// Elijo el consejo de hoy aleatoriamente. +$numTip=rand(0,count($TipOfDay)-1); +$tipMessage=$TipOfDay[$numTip]; +$tipImage=is_file("images/tipOfDay_$numTip.png") ? "images/tipOfDay_$numTip.png" : "images/blanco.png"; + // ########################################################################################################## // ############### PARA SABER QUE IP TIENE EL DISPOSITIVO QUE ESTA UTILIZANDO OPENGNSYS ################### // ########################################################################################################## @@ -230,7 +244,13 @@ if (empty($data->project)) { </head> <body> -"Here we will show our content" +<div> + <p align=center class=cabeceras><img border=0 nod="aulas-1" value="Sala Virtual" style="cursor:pointer" src="images/iconos/logocirculos.png" > <?php echo $TbMsg["TIP"]; ?></p> + <div class="tipOfDay"> + <p class="subcabeceras help_menu"> <?php echo $tipMessage ?></p> + <img src="<?php echo $tipImage ?>"> + </div> +</div> </body> </html> |