X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/834bee1cf2c5bd122b3e941c70b5c2f03ee80a27..d7bed7845acae13f729692fe9261ebe7c9e51012:/lib/MLIB/HTML/QuickForm/Renderer/TablaHorizontal.php diff --git a/lib/MLIB/HTML/QuickForm/Renderer/TablaHorizontal.php b/lib/MLIB/HTML/QuickForm/Renderer/TablaHorizontal.php index d918def..acb586d 100644 --- a/lib/MLIB/HTML/QuickForm/Renderer/TablaHorizontal.php +++ b/lib/MLIB/HTML/QuickForm/Renderer/TablaHorizontal.php @@ -1,16 +1,15 @@ - * $form = new MECON_HTML_QuickForm(); - * $form->renderer = new MECON_HTML_QuickForm_Renderer_TablaHorizontal(array('width' => 400)); + * $form = new MLIB_HTML_QuickForm(); + * $form->renderer = new MLIB_HTML_QuickForm_Renderer_TablaHorizontal(array('width' => 400)); * // Sigo creando el formulario normalmente... * */ -class MECON_HTML_QuickForm_Renderer_TablaHorizontal extends HTML_QuickForm_Renderer { +class MLIB_HTML_QuickForm_Renderer_TablaHorizontal extends HTML_QuickForm_Renderer { /** * Tabla usada para dibujar el formulario. @@ -128,7 +127,7 @@ class MECON_HTML_QuickForm_Renderer_TablaHorizontal extends HTML_QuickForm_Rende * * @access public */ - function MECON_HTML_QuickForm_Renderer_TablaHorizontal($param = array(), $opts = array()) + function MLIB_HTML_QuickForm_Renderer_TablaHorizontal($param = array(), $opts = array()) { parent::HTML_QuickForm_Renderer(); $this->_opts = $opts; @@ -136,7 +135,7 @@ class MECON_HTML_QuickForm_Renderer_TablaHorizontal extends HTML_QuickForm_Rende $this->setTable($param); } else { - $this->setTable(new MECON_HTML_Tabla($param)); + $this->setTable(new MLIB_HTML_Tabla($param)); } } // end constructor