]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MLIB/HTML/Error.php
443cacff4be3d47ee317c39ed3d9e7dd353ed067
[mecon/meconlib.git] / lib / MLIB / HTML / Error.php
1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
2 -------------------------------------------------------------------------------
3                              Ministerio de Economía
4                                     meconlib
5 -------------------------------------------------------------------------------
6 This file is part of meconlib.
7
8 meconlib is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2 of the License, or (at your option)
11 any later version.
12
13 meconlib is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16  
17 You should have received a copy of the GNU General Public License; if not,
18 write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
19 Boston, MA  02111-1307  USA
20 -------------------------------------------------------------------------------
21 Created: Mon Jul 14 19:30:18 2003
22 Author:  Leandro Lucarella <llucar@mecon.gov.ar>
23 -------------------------------------------------------------------------------
24 $Id$
25 -----------------------------------------------------------------------------*/
26
27 /**
28  * Dibuja un mensaje de error en HTML.
29  *
30  * @access public
31  */
32 class MECON_HTML_Error {
33     /**
34      * Mensaje de error.
35      *
36      * @var    string $msg
37      * @access public
38      */
39     var $msg = '';
40
41     /**
42      * Constructor.
43      *
44      * @param  string $msg Mensaje de error.
45      *
46      * @return void
47      * @access public
48      */
49     function MECON_HTML_Error($msg = '')
50     {
51         // TODO - hacer que se le pueda pasar un PEAR_Error y que le saque el mensaje solita.
52         $this->msg = $msg;
53     }
54
55     /**
56      * Dibuja el HTML.
57      *
58      * @return string
59      * @access public
60      */
61     function toHtml()
62     {
63         // FIXME - usar un estilo con class.
64         return '<div style="font-family: Arial; font-size: 11px; text-align: '
65             . 'center; color: red" align="center">' . $this->msg . '</div>';
66     }
67
68 }
69
70 ?>