]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MECON/HTML/Error.php
e904831e5175250085526430ab23ab4ca1601c96
[mecon/meconlib.git] / lib / MECON / 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 // +X2C Class 163 :MECON_HTML_Error
28 /**
29  * Dibuja un mensaje de error en HTML.
30  *
31  * @access public
32  */
33 class MECON_HTML_Error {
34     /**
35      * Mensaje de error.
36      *
37      * @var    string $msg
38      * @access public
39      */
40     var $msg = '';
41
42     // ~X2C
43
44     // +X2C Operation 165
45     /**
46      * Constructor.
47      *
48      * @param  string $msg Mensaje de error.
49      *
50      * @return void
51      * @access public
52      */
53     function MECON_HTML_Error($msg = '') // ~X2C
54     {
55         // TODO - hacer que se le pueda pasar un PEAR_Error y que le saque el mensaje solita.
56         $this->msg = $msg;
57     }
58     // -X2C
59
60     // +X2C Operation 166
61     /**
62      * Dibuja el HTML.
63      *
64      * @return string
65      * @access public
66      */
67     function toHtml() // ~X2C
68     {
69         // FIXME - usar un estilo con class.
70         return '<div style="font-family: Arial; font-size: 11px; text-align: '
71             . 'center; color: red" align="center">' . $this->msg . '</div>';
72     }
73     // -X2C
74
75 } // -X2C Class :MECON_HTML_Error
76
77 ?>