From ad669515c47336d242310f0f14e5cc4296efcd17 Mon Sep 17 00:00:00 2001 From: administrador User Date: Thu, 5 Feb 2009 20:56:48 +0100 Subject: [PATCH] =?utf8?q?Funci=C3=B3n=20Mensaje()=20para=20estandarizar?= =?utf8?q?=20mensajes=20de=20error=20y=20de=20informaci=C3=B3n.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- contenido/sub.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/contenido/sub.php b/contenido/sub.php index 534e9f9..a898c1e 100755 --- a/contenido/sub.php +++ b/contenido/sub.php @@ -313,4 +313,20 @@ function CargarImagenDesdeBD ($id, $width='100%', $height='100%') { function GenerarTooltip ($texto) { return ' onMouseOver=\'toolTip("'.addslashes($texto).'")\' onMouseOut="toolTip()" '; } + +function Mensaje ($texto, $tipo=_M_INFO){ + switch ( $tipo ) { + case _M_INFO: + $id = "info"; + break; + case _M_ERROR: + $id = "error"; + break; + default: + echo 'Error: no se definiĆ³ el $tipo de mensaje'; + } + + return "
".$texto."
"; + +} ?> -- 2.11.4.GIT