]> git.llucax.com Git - mecon/meconlib.git/commitdiff
- Funcion validate que verifica si una fecha es valida
authorMartín Marrese <marrese@gmail.com>
Wed, 11 Jun 2003 15:58:29 +0000 (15:58 +0000)
committerMartín Marrese <marrese@gmail.com>
Wed, 11 Jun 2003 15:58:29 +0000 (15:58 +0000)
HTML/php/QuickForm/mdate.php

index 4fe0e426fb5687cbed92e4cd2c1eb90c058d07f7..e3642865325a2f3ed6cbd4a8d6df4e3631e7a442 100644 (file)
@@ -29,6 +29,7 @@
 
 require_once('HTML/QuickForm/date.php');
 require_once('Date.php');
+require_once('Validate.php');
 
 /**
  * Class to dynamically create HTML Select elements from a date
@@ -104,6 +105,19 @@ class HTML_QuickForm_mdate extends HTML_QuickForm_date
         else {
             return null;
         }
-    } // end func _createNumericOptionList
-}
+    } // end func getValue
+
+    /**
+     * Verifica que una fecha sea valida.
+     *
+     * Verifica que una fecha sea valida. El formato siempre debe ser
+     * '%Y-%m-%d'
+     *
+     * @access public
+     * @return bool
+     */
+    function validate($fecha)
+    {
+        return Validate::date($fecha, array('format' => '%Y-%m-%d'))
+    } // end func validate
 ?>