]> git.llucax.com Git - mecon/meconlib.git/blobdiff - HTML/php/QuickForm/mdate.php
(no commit message)
[mecon/meconlib.git] / HTML / php / QuickForm / mdate.php
index d5a39995dc355eb786bb88cfe5732f10f64d80e4..6be63e19f8f4ebb896792af4b6e15f4dd8063be9 100644 (file)
@@ -28,6 +28,8 @@
 
 
 require_once('HTML/QuickForm/date.php');
 
 
 require_once('HTML/QuickForm/date.php');
+require_once('Date.php');
+require_once('Validate.php');
 
 /**
  * Class to dynamically create HTML Select elements from a date
 
 /**
  * Class to dynamically create HTML Select elements from a date
@@ -87,5 +89,39 @@ class HTML_QuickForm_mdate extends HTML_QuickForm_date
         return $options;
         
     } // end func _createNumericOptionList
         return $options;
         
     } // end func _createNumericOptionList
+
+    /**
+     * Devuelve un objeto date
+     *
+     *
+     * @access public
+     * @return object Date.
+     */
+    function &getValue()
+    {
+        if ($this->_selectedDate['Y'] != 00) {
+            return new Date (sprintf("%04d-%02d-%02d 00:00:00",$this->_selectedDate['Y'],$this->_selectedDate['F'],$this->_selectedDate['d']));
+        } 
+        else {
+            return null;
+        }
+    } // 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($valor, $nombre, $formato = '')
+    {
+        if ($valor['Y'] != '--' && $valor['d'] != '--' && $valor['F'] != '--') {
+            return Validate::date($valor['Y'].'-'.$valor['d'].'-'.$valor['F'], array('format' => '%Y-%m-%d'));
+        }
+        return true;
+    } // end func validate
 }
 ?>
 }
 ?>