From 0ab95802d2de706436ca18dc702c70da9443ec1c Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Wed, 16 Jun 2004 20:02:37 +0000 Subject: [PATCH] Se agrega mensajito cuando no tiene ningun sistema y se centran los mensajes. --- sistema/local_lib/HTML_Mensaje.php | 6 +++--- sistema/www/login.php | 2 +- sistema/www/sistemas.php | 5 +++++ 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/sistema/local_lib/HTML_Mensaje.php b/sistema/local_lib/HTML_Mensaje.php index faef4f7..4729fc8 100644 --- a/sistema/local_lib/HTML_Mensaje.php +++ b/sistema/local_lib/HTML_Mensaje.php @@ -24,7 +24,7 @@ // | Autor: Gonzalo Merayo | // +--------------------------------------------------------------------+ // -// $Id: xmi2code.tpl.php 2 2003-06-23 18:29:20Z gmeray $ +// $Id$ // require_once 'MECON/HTML/Image.php'; @@ -151,7 +151,7 @@ Puede ser: 'error', 'ok', 'alerta'. $tabla->updateCellAttributes(1, 1, array('background'=>'/sistemas/intranet/images/mensaje_superior.gif')); $tabla->updateCellAttributes(3, 1, array('background'=>'/sistemas/intranet/images/mensaje_inferior.gif')); - return $tabla->toHtml(); + return '
' . $tabla->toHtml() . '
'; } // -X2C @@ -171,4 +171,4 @@ Puede ser: 'error', 'ok', 'alerta'. // -X2C } // -X2C Class :HTML_Mensaje -?> \ No newline at end of file +?> diff --git a/sistema/www/login.php b/sistema/www/login.php index 91bccbe..1ef3775 100644 --- a/sistema/www/login.php +++ b/sistema/www/login.php @@ -66,7 +66,7 @@ $login = new HTML_Login(); if(isset($error) && $error == 1) - $login->login_incorrecto = true;//FIXME terminar de prgramar cuando haya ldap + $login->login_incorrecto = true; $t = new HTML_Table(array('width' => 760, 'align' => 'center', 'cellspacing' => 0, diff --git a/sistema/www/sistemas.php b/sistema/www/sistemas.php index 4981c24..dbc1d37 100644 --- a/sistema/www/sistemas.php +++ b/sistema/www/sistemas.php @@ -13,6 +13,7 @@ require_once 'MECON/HTML/Link.php'; require_once 'MECON/HTML/Image.php'; require_once 'DB.php'; require_once 'AI/Sistema.php'; +require_once 'HTML_Mensaje.php'; define('COLUMNAS', 3); @@ -88,6 +89,10 @@ foreach ($sists as $id => $s) { unset($sists); unset($samurai); +if (!$sistemas) { + $t = new HTML_Mensaje('denegado', + 'No tiene permisos para usar ningĂșn sistema', 370); +} $sistema = @array_shift($sistemas); while ($sistema) { $row = array(); -- 2.43.0