X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/878d056b4564378d002b6675772860a275faef05..b7813682506abf93255b3cbd925cf09b3c241fe2:/HTML/php/QuickForm/mdate.php diff --git a/HTML/php/QuickForm/mdate.php b/HTML/php/QuickForm/mdate.php index d7b7538..d5a3999 100644 --- a/HTML/php/QuickForm/mdate.php +++ b/HTML/php/QuickForm/mdate.php @@ -48,13 +48,16 @@ class HTML_QuickForm_mdate extends HTML_QuickForm_date * @access public * @return void */ - function HTML_QuickForm_date($elementName=null, $elementLabel=null, $options=array(), $attributes=null) + function HTML_QuickForm_mdate($elementName=null, $elementLabel=null, $options=array(), $attributes=null) { - foreach ($this->_options as $opts) { - foreach ($opts as $opp) { - array_push($op,'--'); - } - } + $this->_options = 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'), + 'months_long' => array ('--' => '--', 'Enero', 'Febrero', 'Marzo', 'Abril', 'Mayo', 'Junio', 'Julio', 'Agosto', 'Septimbre', 'Octubre', 'Noviembre', 'Diciembre') + ) + ); + parent::HTML_QuickForm_date($elementName, $elementLabel, $options, $attributes); } //end constructor @@ -73,11 +76,16 @@ class HTML_QuickForm_mdate extends HTML_QuickForm_date function _createNumericOptionList($start, $end) { $options = array(); + //TODO + //Verificar que esto este funcionando bien. + $options['--'] = '--'; + //Hasta aca for ($i = $start; $i <= $end; $i++) { $options[$i] = sprintf('%02d', $i); } - array_push($options,'--'); + return $options; } // end func _createNumericOptionList +} ?>