From 3283bc76f58c95fb9251c535b64d6d17147669d4 Mon Sep 17 00:00:00 2001 From: Irina Gómez Date: Wed, 18 Sep 2019 11:07:07 +0200 Subject: #858: The tip of the day is shown only when entering the web console. change in style: align image center and maximum width for text. --- admin/WebConsole/nada.php | 30 +++++++++++++++++------------- 1 file changed, 17 insertions(+), 13 deletions(-) (limited to 'admin/WebConsole/nada.php') diff --git a/admin/WebConsole/nada.php b/admin/WebConsole/nada.php index 8861cb50..4393b463 100644 --- a/admin/WebConsole/nada.php +++ b/admin/WebConsole/nada.php @@ -10,10 +10,22 @@ 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"; +// Sólo lo muestro al entrar en la consola +$consejo = ''; +if (basename($_SERVER['HTTP_REFERER']) == "frames.php") { + // Elijo el consejo de hoy aleatoriamente. + $numTip=rand(0,count($TipOfDay)-1); + $tipMessage=$TipOfDay[$numTip]; + $tipImage=is_file("images/tipOfDay_$numTip.png") ? '' : ''; + + $consejo = '
'."\n". + '

  '.$TbMsg["TIP"].'

'."\n". + '
'."\n". + '

'.$tipMessage.'

'."\n". + '
'.$tipImage.'
'."\n". + '
'."\n". + '
'."\n"; +} // ########################################################################################################## // ############### PARA SABER QUE IP TIENE EL DISPOSITIVO QUE ESTA UTILIZANDO OPENGNSYS ################### @@ -243,15 +255,7 @@ if (empty($data->project)) { - -
-

  

-
-

- -
-
- + -- cgit v1.2.3-18-g5258