]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MLIB/HTML/QuickFormSimple.php
Bug Fix en MLIB_PDF_Tabla. Faltaba inicializar una variable, lo que hacia fallar...
[mecon/meconlib.git] / lib / MLIB / HTML / QuickFormSimple.php
index b3e24275b37f8066165b76e2fa927a3e2f958966..4644e25e3046aa4f618821274d6f80f30ff0e011 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -29,14 +28,14 @@ require_once 'HTML/QuickForm.php';
 /**
  * QuickForm de uso general del MECON.
  */
 /**
  * QuickForm de uso general del MECON.
  */
-class MECON_HTML_QuickFormSimple extends HTML_QuickForm {
+class MLIB_HTML_QuickFormSimple extends HTML_QuickForm {
     
     
-    function MECON_HTML_QuickFormSimple($formName='', $method='post', $action='', $target='_self', $attributes=null)
+    function MLIB_HTML_QuickFormSimple($formName='', $method='post', $action='', $target='_self', $attributes=null)
     {
         parent::HTML_QuickForm($formName, $method, $action, $target, $attributes);
     {
         parent::HTML_QuickForm($formName, $method, $action, $target, $attributes);
-        $this->registerElementType('mdate', 'MECON/HTML/QuickForm/mdate.php', 'MECON_HTML_QuickForm_mdate');
-        $this->registerRule('fecha', 'function', 'validate', 'MECON_HTML_QuickForm_mdate');
-        $this->registerElementType('caritas', 'MECON/HTML/QuickForm/caritas.php', 'MECON_HTML_QuickForm_caritas');
+        $this->registerElementType('mdate', 'MLIB/HTML/QuickForm/mdate.php', 'MLIB_HTML_QuickForm_mdate');
+        $this->registerRule('fecha', 'function', 'validate', 'MLIB_HTML_QuickForm_mdate');
+        $this->registerElementType('caritas', 'MLIB/HTML/QuickForm/caritas.php', 'MLIB_HTML_QuickForm_caritas');
         $this->setRequiredNote('<font color="red">*</font> indica un campo obligatorio');
         $this->setJsWarnings('Hay errores en el formulario:', 'Por favor corríjalos antes de continuar.');
     }
         $this->setRequiredNote('<font color="red">*</font> indica un campo obligatorio');
         $this->setJsWarnings('Hay errores en el formulario:', 'Por favor corríjalos antes de continuar.');
     }