]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MECON/HTML/QuickForm/mdate.php
Se actualizan las cabeceras.
[mecon/meconlib.git] / lib / MECON / HTML / QuickForm / mdate.php
1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
2 -------------------------------------------------------------------------------
3                              Ministerio de Economía
4                                     meconlib
5 -------------------------------------------------------------------------------
6 This file is part of meconlib.
7
8 meconlib is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2 of the License, or (at your option)
11 any later version.
12
13 meconlib is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16  
17 You should have received a copy of the GNU General Public License; if not,
18 write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
19 Boston, MA  02111-1307  USA
20 -------------------------------------------------------------------------------
21 Creado: jue jun  5 17:59:44 ART 2003
22 Autor:  Martin Marrese <mmarre@mecon.gov.ar>
23 -------------------------------------------------------------------------------
24 $Id$
25 -----------------------------------------------------------------------------*/
26
27 require_once 'HTML/QuickForm/date.php';
28 require_once 'Date.php';
29 require_once 'Validate.php';
30
31 /**
32  * Class to dynamically create HTML Select elements from a date
33  * Modificado para que cumpla con los requisitos de mecon
34  *
35  */
36 class HTML_QuickForm_mdate extends HTML_QuickForm_date
37 {   
38     // {{{ constructor
39
40     /**
41      * Class constructor
42      * 
43      * @param     string    $elementName    (optional)Input field name attribute
44      * @param     string    $value          (optional)Input field value
45      * @param     mixed     $attributes     (optional)Either a typical HTML attribute string 
46      *                                      or an associative array. Date format is passed along the attributes.
47      * @access    public
48      * @return    void
49      */
50     function HTML_QuickForm_mdate($elementName=null, $elementLabel=null, $options=array(), $attributes=null)
51     {
52         $this->_options = array ('es' => array (
53                                                'weekdays_short'=> array ('' => '--', 'Dom', 'Lun', 'Mar', 'Mié', 'Jue', 'Vie', 'Sáb'),
54                                                'weekdays_long' => array ('' => '--', 'Domingo', 'Lunes', 'Martes', 'Miércoles', 'Jueves', 'Viernes', 'Sábado'),
55                                                'months_short'  => array ('' => '--', 'Ene', 'Feb', 'Mar', 'Abr', 'May', 'Jun', 'Jul', 'Ago', 'Sep', 'Oct', 'Nov', 'Dic'),
56                                                'months_long'   => array ('' => '--', 'Enero', 'Febrero', 'Marzo', 'Abril', 'Mayo', 'Junio', 'Julio', 'Agosto', 'Septimbre', 'Octubre', 'Noviembre', 'Diciembre')
57                                 )
58                         );
59                         
60         parent::HTML_QuickForm_date($elementName, $elementLabel,
61             array_merge(array('language'=>'es','format'=>'d F Y'), $options),
62             $attributes);
63     } //end constructor
64
65     // }}}
66     // {{{ _createNumericOptionList()
67
68     /**
69      * Creates a numeric option list based on a start number and end number
70      *
71      * @param int $start The start number
72      * @param int $end The end number
73      *
74      * @access public
75      * @return array An array of numeric options.
76      */
77     function _createNumericOptionList($start, $end)
78     {
79         $options = array();
80         //TODO 
81         //Verificar que esto este funcionando bien.
82         $options[''] = '--';
83         //Hasta aca
84         for ($i = $start; $i <= $end; $i++) {
85             $options[$i] = sprintf('%02d', $i);
86         }
87         
88         return $options;
89         
90     } // end func _createNumericOptionList
91
92     /**
93      * Devuelve un objeto date
94      *
95      *
96      * @access public
97      * @return object Date.
98      */
99     function &getValue()
100     {
101         if ($this->_selectedDate['Y']) {
102             return new Date (sprintf("%04d-%02d-%02d 00:00:00",$this->_selectedDate['Y'],$this->_selectedDate['F'],$this->_selectedDate['d']));
103         } 
104         else {
105             return null;
106         }
107     } // end func getValue
108
109     /**
110      * Verifica que una fecha sea valida.
111      *
112      * Verifica que una fecha sea valida. El formato siempre debe ser
113      * '%Y-%m-%d'
114      *
115      * @access public
116      * @return bool
117      */
118     function validate($valor, $nombre, $formato = '')
119     {
120         // Si viene completamente lleno, se valida con el paquete Validate.
121         if ($valor['Y'] and $valor['d'] and $valor['F']) {
122             $str = sprintf('%4d-%02d-%02d', $valor['Y'], $valor['F'], $valor['d']);
123             return  Validate::date($str, array('format' => '%Y-%m-%d'));
124         // Si viene completamente vacio, es valido.
125         } elseif (!$valor['Y'] and !$valor['d'] and !$valor['F']) {
126             return true;
127         // Si viene a medio completar, es invalido.
128         } else {
129             return false;
130         }
131     } // end func validate
132 }
133
134 ?>