2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
3 // +--------------------------------------------------------------------+
4 // | Ministerio de EconomÃa |
6 // +--------------------------------------------------------------------+
7 // | This file is part of Intranet. |
9 // | Intranet is free software; you can redistribute it and/or modify |
10 // | it under the terms of the GNU General Public License as published |
11 // | by the Free Software Foundation; either version 2 of the License, |
12 // | or (at your option) any later version. |
14 // | Intranet is distributed in the hope that it will be useful, but |
15 // | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
17 // | General Public License for more details. |
19 // | You should have received a copy of the GNU General Public License |
20 // | along with Hooks; if not, write to the Free Software Foundation, |
21 // | Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
22 // +--------------------------------------------------------------------+
23 // | Creado: Mon Nov 3 16:53:37 2003 |
24 // | Autor: Gonzalo Merayo <gmeray@mecon.gov.ar> |
25 // +--------------------------------------------------------------------+
27 // $Id: xmi2code.tpl.php 2 2003-06-23 18:29:20Z gmeray $
30 require_once 'MECON/HTML/Image.php';
34 require_once 'HTML/Table.php';
37 // +X2C Class 180 :HTML_Mensaje
39 * Clase para mostrar mensajes en Intranet.
43 class HTML_Mensaje extends HTML_Table {
68 * @param string $tipo Tipo de mensaje.
69 Puede ser: 'error', 'ok', 'alerta'.
70 * @param string $texto Texto del mensaje.
71 * @param int $ancho Ancho del mensaje.
76 function HTML_Mensaje($tipo, $texto = null, $ancho = null) // ~X2C
78 $this->_ancho = (isset($ancho))?$ancho:180;
82 $this->_img = 'mensaje_ok.gif';
83 $this->_texto = 'Correcto';
86 $this->_img = 'mensaje_alerta.gif';
87 $this->_texto = 'Incorrecto';
91 $this->_img = 'mensaje_error.gif';
92 $this->_texto = 'No autorizado';
97 $this->_texto = $texto;
103 // +X2C Operation 182
105 * Muestra el mensaje.
110 function toHtml() // ~X2C
112 $ancho_msg = $this->_ancho - 45 - 12 - 1;
115 $IMG_Pixel =& new MECON_HTML_Image('/sistemas/intranet/images/mensaje_pixel.gif', '', array('height'=>'1'));
116 $IMG_Superior =& new MECON_HTML_Image('/sistemas/intranet//images/mensaje_superior.gif');
117 $IMG_Inferior =& new MECON_HTML_Image('/sistemas/intranet//images/mensaje_inferior.gif');
118 $IMG_Derecha =& new MECON_HTML_Image('/sistemas/intranet//images/mensaje_derecha.gif');
119 $IMG_Izquierda =& new MECON_HTML_Image('/sistemas/intranet//images/'.$this->_img);
120 $IMG_Pixel21 =& new MECON_HTML_Image('/sistemas/intranet/images/mensaje_pixel.gif', '', array('height'=>'21'));
123 $tabla =& new HTML_Table (array('border'=>'0',
126 'width'=>$this->_ancho));
128 $tabla->addrow( array($IMG_Pixel->toHtml(), $IMG_Pixel->toHtml(), $IMG_Pixel->toHtml(), $IMG_Pixel->toHtml()),
129 array ('height'=>'1', 'border'=>'0'));
131 $tabla->updateColAttributes(0, array('width'=>'45'));
132 $tabla->updateColAttributes(1, array('width'=>$ancho_msg));
133 $tabla->updateColAttributes(2, array('width'=>'12'));
134 $tabla->updateColAttributes(3, array('width'=>'1'));
136 $tabla->addrow( array($IMG_Izquierda->toHtml(), $IMG_Superior->toHtml(), $IMG_Derecha->toHtml(), $IMG_Pixel->toHtml()),
137 array ('valign'=>'top'));
139 $tabla->addrow( array('', $this->_texto , '', $IMG_Pixel21->toHtml()),
140 array ('valign'=>'top'));
142 $tabla->addrow( array('', $IMG_Inferior->toHtml() , '', $IMG_Pixel->toHtml()),
143 array ('valign'=>'top'));
145 $tabla->updateCellAttributes(1,0, array('rowspan'=>'3'));
146 $tabla->updateCellAttributes(1,2, array('rowspan'=>'3'));
148 $tabla->updateCellAttributes(2, 1, array('background'=>'/sistemas/intranet/images/mensaje_fondo.gif',
149 'class'=>'mensaje'));
151 $tabla->updateCellAttributes(1, 1, array('background'=>'/sistemas/intranet/images/mensaje_superior.gif'));
152 $tabla->updateCellAttributes(3, 1, array('background'=>'/sistemas/intranet/images/mensaje_inferior.gif'));
154 return $tabla->toHtml();
159 // +X2C Operation 187
161 * Obtener la hoja de estilos.
166 function getCSS() // ~X2C
168 $css = '/sistemas/intranet/css/mensaje.css';
173 } // -X2C Class :HTML_Mensaje