X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/117ab083d0597d84a1f8f79cf76d8260590d4b3c..491e3ed8d9646fc86ccbf3ed9ed1593faedbe167:/lib/MECON/HTML/Error.php diff --git a/lib/MECON/HTML/Error.php b/lib/MECON/HTML/Error.php index e904831..443cacf 100644 --- a/lib/MECON/HTML/Error.php +++ b/lib/MECON/HTML/Error.php @@ -24,7 +24,6 @@ Author: Leandro Lucarella $Id$ -----------------------------------------------------------------------------*/ -// +X2C Class 163 :MECON_HTML_Error /** * Dibuja un mensaje de error en HTML. * @@ -39,9 +38,6 @@ class MECON_HTML_Error { */ var $msg = ''; - // ~X2C - - // +X2C Operation 165 /** * Constructor. * @@ -50,28 +46,25 @@ class MECON_HTML_Error { * @return void * @access public */ - function MECON_HTML_Error($msg = '') // ~X2C + function MECON_HTML_Error($msg = '') { // TODO - hacer que se le pueda pasar un PEAR_Error y que le saque el mensaje solita. $this->msg = $msg; } - // -X2C - // +X2C Operation 166 /** * Dibuja el HTML. * * @return string * @access public */ - function toHtml() // ~X2C + function toHtml() { // FIXME - usar un estilo con class. return '
' . $this->msg . '
'; } - // -X2C -} // -X2C Class :MECON_HTML_Error +} ?> \ No newline at end of file