home *** CD-ROM | disk | FTP | other *** search
/ Enter 2004 June / ENTER.ISO / files / xampp-win32-1.4.5-installer.exe / xampp / date.php < prev    next >
Encoding:
PHP Script  |  2004-03-24  |  23.9 KB  |  433 lines

  1. <?php
  2. /* vim: set expandtab tabstop=4 shiftwidth=4: */
  3. // +----------------------------------------------------------------------+
  4. // | PHP Version 4                                                        |
  5. // +----------------------------------------------------------------------+
  6. // | Copyright (c) 1997-2003 The PHP Group                                |
  7. // +----------------------------------------------------------------------+
  8. // | This source file is subject to version 2.0 of the PHP license,       |
  9. // | that is bundled with this package in the file LICENSE, and is        |
  10. // | available at through the world-wide-web at                           |
  11. // | http://www.php.net/license/2_02.txt.                                 |
  12. // | If you did not receive a copy of the PHP license and are unable to   |
  13. // | obtain it through the world-wide-web, please send a note to          |
  14. // | license@php.net so we can mail you a copy immediately.               |
  15. // +----------------------------------------------------------------------+
  16. // | Authors: Alexey Borzov <avb@php.net>                                 |
  17. // |          Adam Daniel <adaniel1@eesus.jnj.com>                        |
  18. // |          Bertrand Mansion <bmansion@mamasam.com>                     |
  19. // +----------------------------------------------------------------------+
  20. //
  21. // $Id: date.php,v 1.43 2004/03/10 08:58:38 mansion Exp $
  22.  
  23. require_once 'HTML/QuickForm/group.php';
  24. require_once 'HTML/QuickForm/select.php';
  25.  
  26. /**
  27.  * Class for a group of elements used to input dates (and times).
  28.  * 
  29.  * Inspired by original 'date' element but reimplemented as a subclass
  30.  * of HTML_QuickForm_group
  31.  * 
  32.  * @author Alexey Borzov <avb@php.net>
  33.  * @access public
  34.  */
  35. class HTML_QuickForm_date extends HTML_QuickForm_group
  36. {
  37.     // {{{ properties
  38.  
  39.    /**
  40.     * Various options to control the element's display.
  41.     * 
  42.     * Currently known options are
  43.     * 'language': date language
  44.     * 'format': Format of the date, based on PHP's date() function.
  45.     *     The following characters are recognised in format string:
  46.     *       D => Short names of days
  47.     *       l => Long names of days
  48.     *       d => Day numbers
  49.     *       M => Short names of months
  50.     *       F => Long names of months
  51.     *       m => Month numbers
  52.     *       Y => Four digit year
  53.     *       y => Two digit year
  54.     *       h => 12 hour format
  55.     *       H => 23 hour  format
  56.     *       i => Minutes
  57.     *       s => Seconds
  58.     *       a => am/pm
  59.     *       A => AM/PM
  60.     * 'minYear': Minimum year in year select
  61.     * 'maxYear': Maximum year in year select
  62.     * 'addEmptyOption': Should an empty option be added to the top of
  63.     *     each select box?
  64.     * 'emptyOptionValue': The value passed by the empty option.
  65.     * 'emptyOptionText': The text displayed for the empty option.
  66.     * 'optionIncrement': Step to increase the option values by (works for 'i' and 's')
  67.     * 
  68.     * @access   private
  69.     * @var      array
  70.     */
  71.     var $_options = array(
  72.         'language'         => 'en',
  73.         'format'           => 'dMY',
  74.         'minYear'          => 2001,
  75.         'maxYear'          => 2010,
  76.         'addEmptyOption'   => false,
  77.         'emptyOptionValue' => '',
  78.         'emptyOptionText'  => ' ',
  79.         'optionIncrement'  => array('i' => 1, 's' => 1)
  80.     );
  81.  
  82.    /**
  83.     * These complement separators, they are appended to the resultant HTML
  84.     * @access   private
  85.     * @var      array
  86.     */
  87.     var $_wrap = array('', '');
  88.  
  89.    /**
  90.     * Options in different languages
  91.     * 
  92.     * Note to potential translators: to avoid encoding problems please send
  93.     * your translations with "weird" letters encoded as HTML Unicode entities
  94.     * 
  95.     * @access   private
  96.     * @var      array
  97.     */
  98.     var $_locale = array(
  99.         'en'    => array (
  100.             'weekdays_short'=> array ('Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'),
  101.             'weekdays_long' => array ('Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'),
  102.             'months_short'  => array ('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'),
  103.             'months_long'   => array ('January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December')
  104.         ),
  105.         'de'    => array (
  106.             'weekdays_short'=> array ('So', 'Mon', 'Di', 'Mi', 'Do', 'Fr', 'Sa'),
  107.             'weekdays_long' => array ('Sonntag', 'Montag', 'Dienstag', 'Mittwoch', 'Donnerstag', 'Freitag', 'Samstag'),
  108.             'months_short'  => array ('Jan', 'Feb', 'März', 'April', 'Mai', 'Juni', 'Juli', 'Aug', 'Sept', 'Okt', 'Nov', 'Dez'),
  109.             'months_long'   => array ('Januar', 'Februar', 'März', 'April', 'Mai', 'Juni', 'Juli', 'August', 'September', 'Oktober', 'November', 'Dezember')
  110.         ),
  111.         'fr'    => array (
  112.             'weekdays_short'=> array ('Dim', 'Lun', 'Mar', 'Mer', 'Jeu', 'Ven', 'Sam'),
  113.             'weekdays_long' => array ('Dimanche', 'Lundi', 'Mardi', 'Mercredi', 'Jeudi', 'Vendredi', 'Samedi'),
  114.             'months_short'  => array ('Jan', 'Fev', 'Mar', 'Avr', 'Mai', 'Jun', 'Jul', 'Aou', 'Sep', 'Oct', 'Nov', 'Dec'),
  115.             'months_long'   => array ('Janvier', 'Fevrier', 'Mars', 'Avril', 'Mai', 'Juin', 'Juillet', 'Aout', 'Septembre', 'Octobre', 'Novembre', 'Decembre')
  116.         ),
  117.         'hu'    => array (
  118.             'weekdays_short'=> array ('V', 'H', 'K', 'Sze', 'Cs', 'P', 'Szo'),
  119.             'weekdays_long' => array ('vasárnap', 'hétfő', 'kedd', 'szerda', 'csütörtök', 'péntek', 'szombat'),
  120.             'months_short'  => array ('jan', 'feb', 'márc', 'ápr', 'máj', 'jún', 'júl', 'aug', 'szept', 'okt', 'nov', 'dec'),
  121.             'months_long'   => array ('január', 'február', 'március', 'április', 'május', 'június', 'július', 'augusztus', 'szeptember', 'október', 'november', 'december')
  122.         ),
  123.         'pl'    => array (
  124.             'weekdays_short'=> array ('Nie', 'Pn', 'Wt', 'Śr', 'Czw', 'Pt', 'Sob'),
  125.             'weekdays_long' => array ('Niedziela', 'Poniedziałek', 'Wtorek', 'Środa', 'Czwartek', 'Piątek', 'Sobota'),
  126.             'months_short'  => array ('Sty', 'Lut', 'Mar', 'Kwi', 'Maj', 'Cze', 'Lip', 'Sie', 'Wrz', 'Paź', 'Lis', 'Gru'),
  127.             'months_long'   => array ('Styczeń', 'Luty', 'Marzec', 'Kwiecień', 'Maj', 'Czerwiec', 'Lipiec', 'Sierpień', 'Wrzesień', 'Październik', 'Listopad', 'Grudzień')
  128.         ),
  129.         'sl'    => array (
  130.             'weekdays_short'=> array ('Ned', 'Pon', 'Tor', 'Sre', 'Cet', 'Pet', 'Sob'),
  131.             'weekdays_long' => array ('Nedelja', 'Ponedeljek', 'Torek', 'Sreda', 'Cetrtek', 'Petek', 'Sobota'),
  132.             'months_short'  => array ('Jan', 'Feb', 'Mar', 'Apr', 'Maj', 'Jun', 'Jul', 'Avg', 'Sep', 'Okt', 'Nov', 'Dec'),
  133.             'months_long'   => array ('Januar', 'Februar', 'Marec', 'April', 'Maj', 'Junij', 'Julij', 'Avgust', 'September', 'Oktober', 'November', 'December')
  134.         ),
  135.         'ru'    => array (
  136.             'weekdays_short'=> array ('Вс', 'Пн', 'Вт', 'Ср', 'Чт', 'Пт', 'Сб'),
  137.             'weekdays_long' => array ('Воскресенье', 'Понедельник', 'Вторник', 'Среда', 'Четверг', 'Пятница', 'Суббота'),
  138.             'months_short'  => array ('Янв', 'Фев', 'Мар', 'Апр', 'Май', 'Июн', 'Июл', 'Авг', 'Сен', 'Окт', 'Ноя', 'Дек'),
  139.             'months_long'   => array ('Январь', 'Февраль', 'Март', 'Апрель', 'Май', 'Июнь', 'Июль', 'Август', 'Сентябрь', 'Октябрь', 'Ноябрь', 'Декабрь')
  140.         ),
  141.         'es'    => array (
  142.             'weekdays_short'=> array ('Dom', 'Lun', 'Mar', 'Mié', 'Jue', 'Vie', 'Sáb'),
  143.             'weekdays_long' => array ('Domingo', 'Lunes', 'Martes', 'Miércoles', 'Jueves', 'Viernes', 'Sábado'),
  144.             'months_short'  => array ('Ene', 'Feb', 'Mar', 'Abr', 'May', 'Jun', 'Jul', 'Ago', 'Sep', 'Oct', 'Nov', 'Dic'),
  145.             'months_long'   => array ('Enero', 'Febrero', 'Marzo', 'Abril', 'Mayo', 'Junio', 'Julio', 'Agosto', 'Septimbre', 'Octubre', 'Noviembre', 'Diciembre')
  146.         ),
  147.         'da'    => array (
  148.             'weekdays_short'=> array ('Søn', 'Man', 'Tir', 'Ons', 'Tor', 'Fre', 'Lør'),
  149.             'weekdays_long' => array ('Søndag', 'Mandag', 'Tirsdag', 'Onsdag', 'Torsdag', 'Fredag', 'Lørdag'),
  150.             'months_short'  => array ('Jan', 'Feb', 'Mar', 'Apr', 'Maj', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dec'),
  151.             'months_long'   => array ('Januar', 'Februar', 'Marts', 'April', 'Maj', 'Juni', 'Juli', 'August', 'September', 'Oktober', 'November', 'December')
  152.         ),
  153.         'is'    => array (
  154.             'weekdays_short'=> array ('Sun', 'Mán', 'Þri', 'Mið', 'Fim', 'Fös', 'Lau'),
  155.             'weekdays_long' => array ('Sunnudagur', 'Mánudagur', 'Þriðjudagur', 'Miðvikudagur', 'Fimmtudagur', 'Föstudagur', 'Laugardagur'),
  156.             'months_short'  => array ('Jan', 'Feb', 'Mar', 'Apr', 'Maí', 'Jún', 'Júl', 'Ágú', 'Sep', 'Okt', 'Nóv', 'Des'),
  157.             'months_long'   => array ('Janúar', 'Febrúar', 'Mars', 'Apríl', 'Maí', 'Júní', 'Júlí', 'Ágúst', 'September', 'Október', 'Nóvember', 'Desember')
  158.         ),
  159.         'it'    => array (
  160.             'weekdays_short'=> array ('Dom', 'Lun', 'Mar', 'Mer', 'Gio', 'Ven', 'Sab'),
  161.             'weekdays_long' => array ('Domenica', 'Lunedì', 'Martedì', 'Mercoledì', 'Giovedì', 'Venerdì', 'Sabato'),
  162.             'months_short'  => array ('Gen', 'Feb', 'Mar', 'Apr', 'Mag', 'Giu', 'Lug', 'Ago', 'Set', 'Ott', 'Nov', 'Dic'),
  163.             'months_long'   => array ('Gennaio', 'Febbraio', 'Marzo', 'Aprile', 'Maggio', 'Giugno', 'Luglio', 'Agosto', 'Settembre', 'Ottobre', 'Novembre', 'Dicembre')
  164.         ),
  165.         'sk'    => array (
  166.             'weekdays_short'=> array ('Ned', 'Pon', 'Uto', 'Str', 'Štv', 'Pia', 'Sob'),
  167.             'weekdays_long' => array ('Nedeža', 'Pondelok', 'Utorok', 'Streda', 'Štvrtok', 'Piatok', 'Sobota'),
  168.             'months_short'  => array ('Jan', 'Feb', 'Mar', 'Apr', 'Máj', 'Jún', 'Júl', 'Aug', 'Sep', 'Okt', 'Nov', 'Dec'),
  169.             'months_long'   => array ('Január', 'Február', 'Marec', 'Apríl', 'Máj', 'Jún', 'Júl', 'August', 'September', 'Október', 'November', 'December')
  170.         ),
  171.         'cs'    => array (
  172.             'weekdays_short'=> array ('Ne', 'Po', 'Út', 'St', 'Čt', 'Pá', 'So'),
  173.             'weekdays_long' => array ('Neděle', 'Pondělí', 'Úterý', 'Středa', 'Čtvrtek', 'Pátek', 'Sobota'),
  174.             'months_short'  => array ('Led', 'Úno', 'Bře', 'Dub', 'Kvě', 'Čen', 'Čec', 'Srp', 'Zář', 'Říj', 'Lis', 'Pro'),
  175.             'months_long'   => array ('Leden', 'Únor', 'Březen', 'Duben', 'Květen', 'Červen', 'Červenec', 'Srpen', 'Září', 'Říjen', 'Listopad', 'Prosinec')
  176.         ),
  177.         'hy'    => array (
  178.             'weekdays_short'=> array ('Կրկ', 'Երկ', 'Երք', 'Չրք', 'Հնգ', 'Ուր', 'Շբթ'),
  179.             'weekdays_long' => array ('Կիրակի', 'Երկուշաբթի', 'Երեքշաբթի', 'Չորեքշաբթի', 'Հինգշաբթի', 'Ուրբաթ', 'Շաբաթ'),
  180.             'months_short'  => array ('Հնվ', 'Փտր', 'Մրտ', 'Ապր', 'Մյս', 'Հնս', 'Հլս', 'Օգս', 'Սպտ', 'Հկտ', 'Նյմ', 'Դկտ'),
  181.             'months_long'   => array ('Հունվար', 'Փետրվար', 'Մարտ', 'Ապրիլ', 'Մայիս', 'Հունիս', 'Հուլիս', 'Օգոստոս', 'Սեպտեմբեր', 'Հոկտեմբեր', 'Նոյեմբեր', 'Դեկտեմբեր')
  182.         ),
  183.         'nl'    => array (
  184.             'weekdays_short'=> array ('Zo', 'Ma', 'Di', 'Wo', 'Do', 'Vr', 'Za'),
  185.             'weekdays_long' => array ('Zondag', 'Maandag', 'Dinsdag', 'Woensdag', 'Donderdag', 'Vrijdag', 'Zaterdag'),
  186.             'months_short'  => array ('Jan', 'Feb', 'Mar', 'Apr', 'Mei', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dec'),
  187.             'months_long'   => array ('Januari', 'Februari', 'Maart', 'April', 'Mei', 'Juni', 'Juli', 'Augustus', 'September', 'Oktober', 'November', 'December')
  188.         ),
  189.         'et'    => array (
  190.             'weekdays_short'=> array ('P', 'E', 'T', 'K', 'N', 'R', 'L'),
  191.             'weekdays_long' => array ('Pühapäev', 'Esmaspäev', 'Teisipäev', 'Kolmapäev', 'Neljapäev', 'Reede', 'Laupäev'),
  192.             'months_short'  => array ('Jaan', 'Veebr', 'Märts', 'Aprill', 'Mai', 'Juuni', 'Juuli', 'Aug', 'Sept', 'Okt', 'Nov', 'Dets'),
  193.             'months_long'   => array ('Jaanuar', 'Veebruar', 'Märts', 'Aprill', 'Mai', 'Juuni', 'Juuli', 'August', 'September', 'Oktoober', 'November', 'Detsember')
  194.         ),
  195.         'tr'    => array (
  196.             'weekdays_short'=> array ('Paz', 'Pzt', 'Sal', 'Çar', 'Per', 'Cum', 'Cts'),
  197.             'weekdays_long' => array ('Pazar', 'Pazartesi', 'Salı', 'Çarşamba', 'Perşembe', 'Cuma', 'Cumartesi'),
  198.             'months_short'  => array ('Ock', 'Şbt', 'Mrt', 'Nsn', 'Mys', 'Hzrn', 'Tmmz', 'Ağst', 'Eyl', 'Ekm', 'Ksm', 'Arlk'),
  199.             'months_long'   => array ('Ocak', 'Şubat', 'Mart', 'Nisan', 'Mayıs', 'Haziran', 'Temmuz', 'Ağustos', 'Eylül', 'Ekim', 'Kasım', 'Aralık')
  200.         ),
  201.         'no'    => array (
  202.             'weekdays_short'=> array ('Søn', 'Man', 'Tir', 'Ons', 'Tor', 'Fre', 'Lør'),
  203.             'weekdays_long' => array ('Søndag', 'Mandag', 'Tirsdag', 'Onsdag', 'Torsdag', 'Fredag', 'Lørdag'),
  204.             'months_short'  => array ('Jan', 'Feb', 'Mar', 'Apr', 'Mai', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Des'),
  205.             'months_long'   => array ('Januar', 'Februar', 'Mars', 'April', 'Mai', 'Juni', 'Juli', 'August', 'September', 'Oktober', 'November', 'Desember')
  206.         )
  207.     );
  208.  
  209.     // }}}
  210.     // {{{ constructor
  211.  
  212.    /**
  213.     * Class constructor
  214.     * 
  215.     * @access   public
  216.     * @param    string  Element's name
  217.     * @param    mixed   Label(s) for an element
  218.     * @param    array   Options to control the element's display
  219.     * @param    mixed   Either a typical HTML attribute string or an associative array
  220.     */
  221.     function HTML_QuickForm_date($elementName = null, $elementLabel = null, $options = array(), $attributes = null)
  222.     {
  223.         $this->HTML_QuickForm_element($elementName, $elementLabel, $attributes);
  224.         $this->_persistantFreeze = true;
  225.         $this->_appendName = true;
  226.         $this->_type = 'date';
  227.         // set the options, do not bother setting bogus ones
  228.         if (is_array($options)) {
  229.             foreach ($options as $name => $value) {
  230.                 if ('language' == $name) {
  231.                     $this->_options['language'] = isset($this->_locale[$value])? $value: 'en';
  232.                 } elseif (isset($this->_options[$name])) {
  233.                     if (is_array($value)) {
  234.                         $this->_options[$name] = @array_merge($this->_options[$name], $value);
  235.                     } else {
  236.                         $this->_options[$name] = $value;
  237.                     }
  238.                 }
  239.             }
  240.         }
  241.     }
  242.  
  243.     // }}}
  244.     // {{{ _createElements()
  245.  
  246.     function _createElements()
  247.     {
  248.         $this->_separator = $this->_elements = array();
  249.         $separator =  '';
  250.         $locale    =& $this->_locale[$this->_options['language']];
  251.         $backslash =  false;
  252.         for ($i = 0, $length = strlen($this->_options['format']); $i < $length; $i++) {
  253.             $sign = $this->_options['format']{$i};
  254.             if ($backslash) {
  255.                 $backslash  = false;
  256.                 $separator .= $sign;
  257.             } else {
  258.                 $loadSelect = true;
  259.                 switch ($sign) {
  260.                     case 'D':
  261.                         // Sunday is 0 like with 'w' in date()
  262.                         $options = $locale['weekdays_short'];
  263.                         break;
  264.                     case 'l':
  265.                         $options = $locale['weekdays_long'];
  266.                         break;
  267.                     case 'd':
  268.                         $options = $this->_createOptionList(1, 31);
  269.                         break;
  270.                     case 'M':
  271.                         $options = $locale['months_short'];
  272.                         array_unshift($options , '');
  273.                         unset($options[0]);
  274.                         break;
  275.                     case 'm':
  276.                         $options = $this->_createOptionList(1, 12);
  277.                         break;
  278.                     case 'F':
  279.                         $options = $locale['months_long'];
  280.                         array_unshift($options , '');
  281.                         unset($options[0]);
  282.                         break;
  283.                     case 'Y':
  284.                         $options = $this->_createOptionList(
  285.                             $this->_options['minYear'],
  286.                             $this->_options['maxYear'], 
  287.                             $this->_options['minYear'] > $this->_options['maxYear']? -1: 1
  288.                         );
  289.                         break;
  290.                     case 'y':
  291.                         $options = $this->_createOptionList(
  292.                             $this->_options['minYear'],
  293.                             $this->_options['maxYear'],
  294.                             $this->_options['minYear'] > $this->_options['maxYear']? -1: 1
  295.                         );
  296.                         array_walk($options, create_function('&$v,$k','$v = substr($v,-2);')); 
  297.                         break;
  298.                     case 'h':
  299.                         $options = $this->_createOptionList(1, 12);
  300.                         break;
  301.                     case 'H':
  302.                         $options = $this->_createOptionList(0, 23);
  303.                         break;
  304.                     case 'i':
  305.                         $options = $this->_createOptionList(0, 59, $this->_options['optionIncrement']['i']);
  306.                         break;
  307.                     case 's':
  308.                         $options = $this->_createOptionList(0, 59, $this->_options['optionIncrement']['s']);
  309.                         break;
  310.                     case 'a':
  311.                         $options = array('am' => 'am', 'pm' => 'pm');
  312.                         break;
  313.                     case 'A':
  314.                         $options = array('AM' => 'AM', 'PM' => 'PM');
  315.                         break;
  316.                     case '\\':
  317.                         $backslash  = true;
  318.                         $loadSelect = false;
  319.                         break;
  320.                     default:
  321.                         $separator .= (' ' == $sign? ' ': $sign);
  322.                         $loadSelect = false;
  323.                 }
  324.     
  325.                 if ($loadSelect) {
  326.                     if (0 < count($this->_elements)) {
  327.                         $this->_separator[] = $separator;
  328.                     } else {
  329.                         $this->_wrap[0] = $separator;
  330.                     }
  331.                     $separator = '';
  332.                     // Should we add an empty option to the top of the select?
  333.                     if ($this->_options['addEmptyOption']) {
  334.                         // Preserve the keys
  335.                         $options = array($this->_options['emptyOptionValue'] => $this->_options['emptyOptionText']) + $options;
  336.                     }
  337.                     $this->_elements[] =& new HTML_QuickForm_select($sign, null, $options, $this->getAttributes());
  338.                 }
  339.             }
  340.         }
  341.         $this->_wrap[1] = $separator . ($backslash? '\\': '');
  342.     }
  343.  
  344.     // }}}
  345.     // {{{ _createOptionList()
  346.  
  347.    /**
  348.     * Creates an option list containing the numbers from the start number to the end, inclusive
  349.     *
  350.     * @param    int     The start number
  351.     * @param    int     The end number
  352.     * @param    int     Increment by this value
  353.     * @access   private
  354.     * @return   array   An array of numeric options.
  355.     */
  356.     function _createOptionList($start, $end, $step = 1)
  357.     {
  358.         for ($i = $start, $options = array(); $start > $end? $i >= $end: $i <= $end; $i += $step) {
  359.             $options[$i] = sprintf('%02d', $i);
  360.         }
  361.         return $options;
  362.     }
  363.  
  364.     // }}}
  365.     // {{{ setValue()
  366.  
  367.     function setValue($value)
  368.     {
  369.         if ($this->_options['addEmptyOption'] && empty($value)) {
  370.             $value = array();
  371.         } else  if (!is_array($value)) {
  372.             if (!is_numeric($value)) {
  373.                 $value = strtotime($value);
  374.             }
  375.             // might be a unix epoch, then we fill all possible values
  376.             $arr = explode('-', date('w-d-n-Y-h-H-i-s-a-A', (int)$value));
  377.             $value = array(
  378.                 'D' => $arr[0],
  379.                 'l' => $arr[0],
  380.                 'd' => $arr[1],
  381.                 'M' => $arr[2],
  382.                 'm' => $arr[2],
  383.                 'F' => $arr[2],
  384.                 'Y' => $arr[3],
  385.                 'y' => $arr[3],
  386.                 'h' => $arr[4],
  387.                 'H' => $arr[5],
  388.                 'i' => $arr[6],
  389.                 's' => $arr[7],
  390.                 'a' => $arr[8],
  391.                 'A' => $arr[9]
  392.             );
  393.         }
  394.         parent::setValue($value);
  395.     }
  396.  
  397.     // }}}
  398.     // {{{ toHtml()
  399.  
  400.     function toHtml()
  401.     {
  402.         include_once('HTML/QuickForm/Renderer/Default.php');
  403.         $renderer =& new HTML_QuickForm_Renderer_Default();
  404.         $renderer->setElementTemplate($this->_wrap[0] . '{element}' . $this->_wrap[1]);
  405.         parent::accept($renderer);
  406.         return $renderer->toHtml();
  407.     }
  408.  
  409.     // }}}
  410.     // {{{ accept()
  411.  
  412.     function accept(&$renderer, $required = false, $error = null)
  413.     {
  414.         $renderer->renderElement($this, $required, $error);
  415.     }
  416.  
  417.     // }}}
  418.     // {{{ onQuickFormEvent()
  419.  
  420.     function onQuickFormEvent($event, $arg, &$caller)
  421.     {
  422.         if ('updateValue' == $event) {
  423.             // we need to call setValue(), 'cause the default/constant value
  424.             // may be in fact a timestamp, not an array
  425.             return HTML_QuickForm_element::onQuickFormEvent($event, $arg, $caller);
  426.         } else {
  427.             return parent::onQuickFormEvent($event, $arg, $caller);
  428.         }
  429.     }
  430.  
  431.     // }}}
  432. }
  433. ?>