X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/b7813682506abf93255b3cbd925cf09b3c241fe2..c7b69266564b1e8b32109bd2cf6b244ffaf58d05:/HTML/php/QuickForm/mdate.php?ds=inline diff --git a/HTML/php/QuickForm/mdate.php b/HTML/php/QuickForm/mdate.php index d5a3999..4fe0e42 100644 --- a/HTML/php/QuickForm/mdate.php +++ b/HTML/php/QuickForm/mdate.php @@ -28,6 +28,7 @@ require_once('HTML/QuickForm/date.php'); +require_once('Date.php'); /** * Class to dynamically create HTML Select elements from a date @@ -87,5 +88,22 @@ class HTML_QuickForm_mdate extends HTML_QuickForm_date 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 _createNumericOptionList } ?>