]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/HTML/QuickForm/mdate.php
Se agregan atributos para parametrizar gráficos de torta.
[mecon/meconlib.git] / lib / MECON / HTML / QuickForm / mdate.php
index b4927fa07a2421a247b65f124c13befbaaefa602..7117db2389ec39d4cc2372eadf508f0749b9d3a8 100644 (file)
@@ -47,7 +47,7 @@ class MECON_HTML_QuickForm_mdate extends HTML_QuickForm_date {
      * @return    void
      */
     function MECON_HTML_QuickForm_mdate($elementName=null, $elementLabel=null, $options=array(), $attributes=null) {
-        $this->_options = array ('es' => array (
+        $this->_locales = array ('es' => array (
                                            'weekdays_short'=> array ('' => '--', 'Dom', 'Lun', 'Mar', 'Mié', 'Jue', 'Vie', 'Sáb'),
                                            'weekdays_long' => array ('' => '--', 'Domingo', 'Lunes', 'Martes', 'Miércoles', 'Jueves', 'Viernes', 'Sábado'),
                                            'months_short'  => array ('' => '--', 'Ene', 'Feb', 'Mar', 'Abr', 'May', 'Jun', 'Jul', 'Ago', 'Sep', 'Oct', 'Nov', 'Dic'),
@@ -58,7 +58,6 @@ class MECON_HTML_QuickForm_mdate extends HTML_QuickForm_date {
                                                'Octubre', 'Noviembre', 'Diciembre')
                                        )
                                 );
-
         parent::HTML_QuickForm_date($elementName, $elementLabel,
                                     array_merge(array('language'=>'es','format'=>'d F Y'), $options),
                                     $attributes);
@@ -99,7 +98,10 @@ class MECON_HTML_QuickForm_mdate extends HTML_QuickForm_date {
      */
     function &getValue() {
         if ($this->_selectedDate['Y']) {
-            return new Date (sprintf("%04d-%02d-%02d 00:00:00",$this->_selectedDate['Y'],$this->_selectedDate['F'],$this->_selectedDate['d']));
+            return new Date (@sprintf("%04d-%02d-%02d %02d:%02d:00",
+            $this->_selectedDate['Y'], $this->_selectedDate['F'],
+            $this->_selectedDate['d'], $this->_selectedDate['H'],
+            $this->_selectedDate['i']));
         } else {
             return null;
         }