HTML_QuickForm
[ class tree: HTML_QuickForm ] [ index: HTML_QuickForm ] [ all elements ]

Source for file date.php

Documentation is available at date.php

  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.45 2004/06/28 12:57:39 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. {
  36.     // {{{ properties
  37.  
  38.    /**
  39.     * Various options to control the element's display.
  40.     * 
  41.     * Currently known options are
  42.     * 'language': date language
  43.     * 'format': Format of the date, based on PHP's date() function.
  44.     *     The following characters are recognised in format string:
  45.     *       D => Short names of days
  46.     *       l => Long names of days
  47.     *       d => Day numbers
  48.     *       M => Short names of months
  49.     *       F => Long names of months
  50.     *       m => Month numbers
  51.     *       Y => Four digit year
  52.     *       y => Two digit year
  53.     *       h => 12 hour format
  54.     *       H => 23 hour  format
  55.     *       i => Minutes
  56.     *       s => Seconds
  57.     *       a => am/pm
  58.     *       A => AM/PM
  59.     * 'minYear': Minimum year in year select
  60.     * 'maxYear': Maximum year in year select
  61.     * 'addEmptyOption': Should an empty option be added to the top of
  62.     *     each select box?
  63.     * 'emptyOptionValue': The value passed by the empty option.
  64.     * 'emptyOptionText': The text displayed for the empty option.
  65.     * 'optionIncrement': Step to increase the option values by (works for 'i' and 's')
  66.     * 
  67.     * @access   private
  68.     * @var      array 
  69.     */
  70.     var $_options = array(
  71.         'language'         => 'en',
  72.         'format'           => 'dMY',
  73.         'minYear'          => 2001,
  74.         'maxYear'          => 2010,
  75.         'addEmptyOption'   => false,
  76.         'emptyOptionValue' => '',
  77.         'emptyOptionText'  => '&nbsp;',
  78.         'optionIncrement'  => array('i' => 1's' => 1)
  79.     );
  80.  
  81.    /**
  82.     * These complement separators, they are appended to the resultant HTML
  83.     * @access   private
  84.     * @var      array 
  85.     */
  86.     var $_wrap = array('''');
  87.  
  88.    /**
  89.     * Options in different languages
  90.     * 
  91.     * Note to potential translators: to avoid encoding problems please send
  92.     * your translations with "weird" letters encoded as HTML Unicode entities
  93.     * 
  94.     * @access   private
  95.     * @var      array 
  96.     */
  97.     var $_locale = array(
  98.         'en'    => array (
  99.             'weekdays_short'=> array ('Sun''Mon''Tue''Wed''Thu''Fri''Sat'),
  100.             'weekdays_long' => array ('Sunday''Monday''Tuesday''Wednesday''Thursday''Friday''Saturday'),
  101.             'months_short'  => array ('Jan''Feb''Mar''Apr''May''Jun''Jul''Aug''Sep''Oct''Nov''Dec'),
  102.             'months_long'   => array ('January''February''March''April''May''June''July''August''September''October''November''December')
  103.         ),
  104.         'de'    => array (
  105.             'weekdays_short'=> array ('So''Mon''Di''Mi''Do''Fr''Sa'),
  106.             'weekdays_long' => array ('Sonntag''Montag''Dienstag''Mittwoch''Donnerstag''Freitag''Samstag'),
  107.             'months_short'  => array ('Jan''Feb''M&#xe4;rz''April''Mai''Juni''Juli''Aug''Sept''Okt''Nov''Dez'),
  108.             'months_long'   => array ('Januar''Februar''M&#xe4;rz''April''Mai''Juni''Juli''August''September''Oktober''November''Dezember')
  109.         ),
  110.         'fr'    => array (
  111.             'weekdays_short'=> array ('Dim''Lun''Mar''Mer''Jeu''Ven''Sam'),
  112.             'weekdays_long' => array ('Dimanche''Lundi''Mardi''Mercredi''Jeudi''Vendredi''Samedi'),
  113.             'months_short'  => array ('Jan''Fev''Mar''Avr''Mai''Jun''Jul''Aou''Sep''Oct''Nov''Dec'),
  114.             'months_long'   => array ('Janvier''Fevrier''Mars''Avril''Mai''Juin''Juillet''Aout''Septembre''Octobre''Novembre''Decembre')
  115.         ),
  116.         'fr'    => array (
  117.             'weekdays_short'=> array ('Dim''Lun''Mar''Mer''Jeu''Ven''Sam'),
  118.             'weekdays_long' => array ('Dimanche''Lundi''Mardi''Mercredi''Jeudi''Vendredi''Samedi'),
  119.             'months_short'  => array ('Jan''Fev''Mar''Avr''Mai''Jun''Jul''Aou''Sep''Oct''Nov''Dec'),
  120.             'months_long'   => array ('Janvier''F&#xe9;vrier''Mars''Avril''Mai''Juin''Juillet''Ao&#xfb;t''Septembre''Octobre''Novembre''D&#xe9;cembre')
  121.         ),
  122.         'hu'    => array (
  123.             'weekdays_short'=> array ('V''H''K''Sze''Cs''P''Szo'),
  124.             'weekdays_long' => array ('vas&#xe1;rnap''h&#xe9;tf&#x151;''kedd''szerda''cs&#xfc;t&#xf6;rt&#xf6;k''p&#xe9;ntek''szombat'),
  125.             'months_short'  => array ('jan''feb''m&#xe1;rc''&#xe1;pr''m&#xe1;j''j&#xfa;n''j&#xfa;l''aug''szept''okt''nov''dec'),
  126.             'months_long'   => array ('janu&#xe1;r''febru&#xe1;r''m&#xe1;rcius''&#xe1;prilis''m&#xe1;jus''j&#xfa;nius''j&#xfa;lius''augusztus''szeptember''okt&#xf3;ber''november''december')
  127.         ),
  128.         'pl'    => array (
  129.             'weekdays_short'=> array ('Nie''Pn''Wt''&#x15a;r''Czw''Pt''Sob'),
  130.             'weekdays_long' => array ('Niedziela''Poniedzia&#x142;ek''Wtorek''&#x15a;roda''Czwartek''Pi&#x105;tek''Sobota'),
  131.             'months_short'  => array ('Sty''Lut''Mar''Kwi''Maj''Cze''Lip''Sie''Wrz''Pa&#x17a;''Lis''Gru'),
  132.             'months_long'   => array ('Stycze&#x144;''Luty''Marzec''Kwiecie&#x144;''Maj''Czerwiec''Lipiec''Sierpie&#x144;''Wrzesie&#x144;''Pa&#x17a;dziernik''Listopad''Grudzie&#x144;')
  133.         ),
  134.         'sl'    => array (
  135.             'weekdays_short'=> array ('Ned''Pon''Tor''Sre''Cet''Pet''Sob'),
  136.             'weekdays_long' => array ('Nedelja''Ponedeljek''Torek''Sreda''Cetrtek''Petek''Sobota'),
  137.             'months_short'  => array ('Jan''Feb''Mar''Apr''Maj''Jun''Jul''Avg''Sep''Okt''Nov''Dec'),
  138.             'months_long'   => array ('Januar''Februar''Marec''April''Maj''Junij''Julij''Avgust''September''Oktober''November''December')
  139.         ),
  140.         'ru'    => array (
  141.             'weekdays_short'=> array ('&#x412;&#x441;''&#x41f;&#x43d;''&#x412;&#x442;''&#x421;&#x440;''&#x427;&#x442;''&#x41f;&#x442;''&#x421;&#x431;'),
  142.             'weekdays_long' => array ('&#x412;&#x43e;&#x441;&#x43a;&#x440;&#x435;&#x441;&#x435;&#x43d;&#x44c;&#x435;''&#x41f;&#x43e;&#x43d;&#x435;&#x434;&#x435;&#x43b;&#x44c;&#x43d;&#x438;&#x43a;''&#x412;&#x442;&#x43e;&#x440;&#x43d;&#x438;&#x43a;''&#x421;&#x440;&#x435;&#x434;&#x430;''&#x427;&#x435;&#x442;&#x432;&#x435;&#x440;&#x433;''&#x41f;&#x44f;&#x442;&#x43d;&#x438;&#x446;&#x430;''&#x421;&#x443;&#x431;&#x431;&#x43e;&#x442;&#x430;'),
  143.             'months_short'  => array ('&#x42f;&#x43d;&#x432;''&#x424;&#x435;&#x432;''&#x41c;&#x430;&#x440;''&#x410;&#x43f;&#x440;''&#x41c;&#x430;&#x439;''&#x418;&#x44e;&#x43d;''&#x418;&#x44e;&#x43b;''&#x410;&#x432;&#x433;''&#x421;&#x435;&#x43d;''&#x41e;&#x43a;&#x442;''&#x41d;&#x43e;&#x44f;''&#x414;&#x435;&#x43a;'),
  144.             'months_long'   => array ('&#x42f;&#x43d;&#x432;&#x430;&#x440;&#x44c;''&#x424;&#x435;&#x432;&#x440;&#x430;&#x43b;&#x44c;''&#x41c;&#x430;&#x440;&#x442;''&#x410;&#x43f;&#x440;&#x435;&#x43b;&#x44c;''&#x41c;&#x430;&#x439;''&#x418;&#x44e;&#x43d;&#x44c;''&#x418;&#x44e;&#x43b;&#x44c;''&#x410;&#x432;&#x433;&#x443;&#x441;&#x442;''&#x421;&#x435;&#x43d;&#x442;&#x44f;&#x431;&#x440;&#x44c;''&#x41e;&#x43a;&#x442;&#x44f;&#x431;&#x440;&#x44c;''&#x41d;&#x43e;&#x44f;&#x431;&#x440;&#x44c;''&#x414;&#x435;&#x43a;&#x430;&#x431;&#x440;&#x44c;')
  145.         ),
  146.         'es'    => array (
  147.             'weekdays_short'=> array ('Dom''Lun''Mar''Mi&#xe9;''Jue''Vie''S&#xe1;b'),
  148.             'weekdays_long' => array ('Domingo''Lunes''Martes''Mi&#xe9;rcoles''Jueves''Viernes''S&#xe1;bado'),
  149.             'months_short'  => array ('Ene''Feb''Mar''Abr''May''Jun''Jul''Ago''Sep''Oct''Nov''Dic'),
  150.             'months_long'   => array ('Enero''Febrero''Marzo''Abril''Mayo''Junio''Julio''Agosto''Septimbre''Octubre''Noviembre''Diciembre')
  151.         ),
  152.         'da'    => array (
  153.             'weekdays_short'=> array ('S&#xf8;n''Man''Tir''Ons''Tor''Fre''L&#xf8;r'),
  154.             'weekdays_long' => array ('S&#xf8;ndag''Mandag''Tirsdag''Onsdag''Torsdag''Fredag''L&#xf8;rdag'),
  155.             'months_short'  => array ('Jan''Feb''Mar''Apr''Maj''Jun''Jul''Aug''Sep''Okt''Nov''Dec'),
  156.             'months_long'   => array ('Januar''Februar''Marts''April''Maj''Juni''Juli''August''September''Oktober''November''December')
  157.         ),
  158.         'is'    => array (
  159.             'weekdays_short'=> array ('Sun''M&#xe1;n''&#xde;ri''Mi&#xf0;''Fim''F&#xf6;s''Lau'),
  160.             'weekdays_long' => array ('Sunnudagur''M&#xe1;nudagur''&#xde;ri&#xf0;judagur''Mi&#xf0;vikudagur''Fimmtudagur''F&#xf6;studagur''Laugardagur'),
  161.             'months_short'  => array ('Jan''Feb''Mar''Apr''Ma&#xed;''J&#xfa;n''J&#xfa;l''&#xc1;g&#xfa;''Sep''Okt''N&#xf3;v''Des'),
  162.             'months_long'   => array ('Jan&#xfa;ar''Febr&#xfa;ar''Mars''Apr&#xed;l''Ma&#xed;''J&#xfa;n&#xed;''J&#xfa;l&#xed;''&#xc1;g&#xfa;st''September''Okt&#xf3;ber''N&#xf3;vember''Desember')
  163.         ),
  164.         'it'    => array (
  165.             'weekdays_short'=> array ('Dom''Lun''Mar''Mer''Gio''Ven''Sab'),
  166.             'weekdays_long' => array ('Domenica''Luned&#xec;''Marted&#xec;''Mercoled&#xec;''Gioved&#xec;''Venerd&#xec;''Sabato'),
  167.             'months_short'  => array ('Gen''Feb''Mar''Apr''Mag''Giu''Lug''Ago''Set''Ott''Nov''Dic'),
  168.             'months_long'   => array ('Gennaio''Febbraio''Marzo''Aprile''Maggio''Giugno''Luglio''Agosto''Settembre''Ottobre''Novembre''Dicembre')
  169.         ),
  170.         'sk'    => array (
  171.             'weekdays_short'=> array ('Ned''Pon''Uto''Str''&#x8a;tv''Pia''Sob'),
  172.             'weekdays_long' => array ('Nede&#x17e;a''Pondelok''Utorok''Streda''&#x8a;tvrtok''Piatok''Sobota'),
  173.             'months_short'  => array ('Jan''Feb''Mar''Apr''M&#xe1;j''J&#xfa;n''J&#xfa;l''Aug''Sep''Okt''Nov''Dec'),
  174.             'months_long'   => array ('Janu&#xe1;r''Febru&#xe1;r''Marec''Apr&#xed;l''M&#xe1;j''J&#xfa;n''J&#xfa;l''August''September''Okt&#xf3;ber''November''December')
  175.         ),
  176.         'cs'    => array (
  177.             'weekdays_short'=> array ('Ne''Po''&#xda;t''St''&#x10c;t''P&#xe1;''So'),
  178.             'weekdays_long' => array ('Ned&#x11b;le''Pond&#x11b;l&#xed;''&#xda;ter&#xfd;''St&#x159;eda''&#x10c;tvrtek''P&#xe1;tek''Sobota'),
  179.             'months_short'  => array ('Led''&#xda;no''B&#x159;e''Dub''Kv&#x11b;''&#x10c;en''&#x10c;ec''Srp''Z&#xe1;&#x159;''&#x158;&#xed;j''Lis''Pro'),
  180.             'months_long'   => array ('Leden''&#xda;nor''B&#x159;ezen''Duben''Kv&#x11b;ten''&#x10c;erven''&#x10c;ervenec''Srpen''Z&#xe1;&#x159;&#xed;''&#x158;&#xed;jen''Listopad''Prosinec')
  181.         ),
  182.         'hy'    => array (
  183.             'weekdays_short'=> array ('&#x53f;&#x580;&#x56f;''&#x535;&#x580;&#x56f;''&#x535;&#x580;&#x584;''&#x549;&#x580;&#x584;''&#x540;&#x576;&#x563;''&#x548;&#x582;&#x580;''&#x547;&#x562;&#x569;'),
  184.             'weekdays_long' => array ('&#x53f;&#x56b;&#x580;&#x561;&#x56f;&#x56b;''&#x535;&#x580;&#x56f;&#x578;&#x582;&#x577;&#x561;&#x562;&#x569;&#x56b;''&#x535;&#x580;&#x565;&#x584;&#x577;&#x561;&#x562;&#x569;&#x56b;''&#x549;&#x578;&#x580;&#x565;&#x584;&#x577;&#x561;&#x562;&#x569;&#x56b;''&#x540;&#x56b;&#x576;&#x563;&#x577;&#x561;&#x562;&#x569;&#x56b;''&#x548;&#x582;&#x580;&#x562;&#x561;&#x569;''&#x547;&#x561;&#x562;&#x561;&#x569;'),
  185.             'months_short'  => array ('&#x540;&#x576;&#x57e;''&#x553;&#x57f;&#x580;''&#x544;&#x580;&#x57f;''&#x531;&#x57a;&#x580;''&#x544;&#x575;&#x57d;''&#x540;&#x576;&#x57d;''&#x540;&#x56c;&#x57d;''&#x555;&#x563;&#x57d;''&#x54d;&#x57a;&#x57f;''&#x540;&#x56f;&#x57f;''&#x546;&#x575;&#x574;''&#x534;&#x56f;&#x57f;'),
  186.             'months_long'   => array ('&#x540;&#x578;&#x582;&#x576;&#x57e;&#x561;&#x580;''&#x553;&#x565;&#x57f;&#x580;&#x57e;&#x561;&#x580;''&#x544;&#x561;&#x580;&#x57f;''&#x531;&#x57a;&#x580;&#x56b;&#x56c;''&#x544;&#x561;&#x575;&#x56b;&#x57d;''&#x540;&#x578;&#x582;&#x576;&#x56b;&#x57d;''&#x540;&#x578;&#x582;&#x56c;&#x56b;&#x57d;''&#x555;&#x563;&#x578;&#x57d;&#x57f;&#x578;&#x57d;''&#x54d;&#x565;&#x57a;&#x57f;&#x565;&#x574;&#x562;&#x565;&#x580;''&#x540;&#x578;&#x56f;&#x57f;&#x565;&#x574;&#x562;&#x565;&#x580;''&#x546;&#x578;&#x575;&#x565;&#x574;&#x562;&#x565;&#x580;''&#x534;&#x565;&#x56f;&#x57f;&#x565;&#x574;&#x562;&#x565;&#x580;')
  187.         ),
  188.         'nl'    => array (
  189.             'weekdays_short'=> array ('Zo''Ma''Di''Wo''Do''Vr''Za'),
  190.             'weekdays_long' => array ('Zondag''Maandag''Dinsdag''Woensdag''Donderdag''Vrijdag''Zaterdag'),
  191.             'months_short'  => array ('Jan''Feb''Mar''Apr''Mei''Jun''Jul''Aug''Sep''Okt''Nov''Dec'),
  192.             'months_long'   => array ('Januari''Februari''Maart''April''Mei''Juni''Juli''Augustus''September''Oktober''November''December')
  193.         ),
  194.         'et'    => array (
  195.             'weekdays_short'=> array ('P''E''T''K''N''R''L'),
  196.             'weekdays_long' => array ('P&#xfc;hap&#xe4;ev''Esmasp&#xe4;ev''Teisip&#xe4;ev''Kolmap&#xe4;ev''Neljap&#xe4;ev''Reede''Laup&#xe4;ev'),
  197.             'months_short'  => array ('Jaan''Veebr''M&#xe4;rts''Aprill''Mai''Juuni''Juuli''Aug''Sept''Okt''Nov''Dets'),
  198.             'months_long'   => array ('Jaanuar''Veebruar''M&#xe4;rts''Aprill''Mai''Juuni''Juuli''August''September''Oktoober''November''Detsember')
  199.         ),
  200.         'tr'    => array (
  201.             'weekdays_short'=> array ('Paz''Pzt''Sal''&#xc7;ar''Per''Cum''Cts'),
  202.             'weekdays_long' => array ('Pazar''Pazartesi''Sal&#x131;''&#xc7;ar&#x15f;amba''Per&#x15f;embe''Cuma''Cumartesi'),
  203.             'months_short'  => array ('Ock''&#x15e;bt''Mrt''Nsn''Mys''Hzrn''Tmmz''A&#x11f;st''Eyl''Ekm''Ksm''Arlk'),
  204.             'months_long'   => array ('Ocak''&#x15e;ubat''Mart''Nisan''May&#x131;s''Haziran''Temmuz''A&#x11f;ustos''Eyl&#xfc;l''Ekim''Kas&#x131;m''Aral&#x131;k')
  205.         ),
  206.         'no'    => array (
  207.             'weekdays_short'=> array ('S&#xf8;n''Man''Tir''Ons''Tor''Fre''L&#xf8;r'),
  208.             'weekdays_long' => array ('S&#xf8;ndag''Mandag''Tirsdag''Onsdag''Torsdag''Fredag''L&#xf8;rdag'),
  209.             'months_short'  => array ('Jan''Feb''Mar''Apr''Mai''Jun''Jul''Aug''Sep''Okt''Nov''Des'),
  210.             'months_long'   => array ('Januar''Februar''Mars''April''Mai''Juni''Juli''August''September''Oktober''November''Desember')
  211.         ),
  212.         'eo'    => array (
  213.             'weekdays_short'=> array ('Dim''Lun''Mar''Mer''&#x134;a&#x16D;''Ven''Sab'),
  214.             'weekdays_long' => array ('Diman&#x109;o''Lundo''Mardo''Merkredo''&#x134;a&#x16D;do''Vendredo''Sabato'),
  215.             'months_short'  => array ('Jan''Feb''Mar''Apr''Maj''Jun''Jul''A&#x16D;g''Sep''Okt''Nov''Dec'),
  216.             'months_long'   => array ('Januaro''Februaro''Marto''Aprilo''Majo''Junio''Julio''A&#x16D;gusto''Septembro''Oktobro''Novembro''Decembro')
  217.         )
  218.     );
  219.  
  220.     // }}}
  221.     // {{{ constructor
  222.  
  223.    /**
  224.     * Class constructor
  225.     * 
  226.     * @access   public
  227.     * @param    string  Element's name
  228.     * @param    mixed   Label(s) for an element
  229.     * @param    array   Options to control the element's display
  230.     * @param    mixed   Either a typical HTML attribute string or an associative array
  231.     */
  232.     function HTML_QuickForm_date($elementName = null$elementLabel = null$options = array()$attributes = null)
  233.     {
  234.         $this->HTML_QuickForm_element($elementName$elementLabel$attributes);
  235.         $this->_persistantFreeze = true;
  236.         $this->_appendName = true;
  237.         $this->_type 'date';
  238.         // set the options, do not bother setting bogus ones
  239.         if (is_array($options)) {
  240.             foreach ($options as $name => $value{
  241.                 if ('language' == $name{
  242.                     $this->_options['language'= isset($this->_locale[$value])$value'en';
  243.                 elseif (isset($this->_options[$name])) {
  244.                     if (is_array($value)) {
  245.                         $this->_options[$name@array_merge($this->_options[$name]$value);
  246.                     else {
  247.                         $this->_options[$name$value;
  248.                     }
  249.                 }
  250.             }
  251.         }
  252.     }
  253.  
  254.     // }}}
  255.     // {{{ _createElements()
  256.  
  257.     function _createElements()
  258.     {
  259.         $this->_separator $this->_elements = array();
  260.         $separator =  '';
  261.         $locale    =$this->_locale[$this->_options['language']];
  262.         $backslash =  false;
  263.         for ($i = 0$length strlen($this->_options['format'])$i $length$i++{
  264.             $sign $this->_options['format']{$i};
  265.             if ($backslash{
  266.                 $backslash  = false;
  267.                 $separator .= $sign;
  268.             else {
  269.                 $loadSelect = true;
  270.                 switch ($sign{
  271.                     case 'D':
  272.                         // Sunday is 0 like with 'w' in date()
  273.                         $options $locale['weekdays_short'];
  274.                         break;
  275.                     case 'l':
  276.                         $options $locale['weekdays_long'];
  277.                         break;
  278.                     case 'd':
  279.                         $options $this->_createOptionList(131);
  280.                         break;
  281.                     case 'M':
  282.                         $options $locale['months_short'];
  283.                         array_unshift($options '');
  284.                         unset($options[0]);
  285.                         break;
  286.                     case 'm':
  287.                         $options $this->_createOptionList(112);
  288.                         break;
  289.                     case 'F':
  290.                         $options $locale['months_long'];
  291.                         array_unshift($options '');
  292.                         unset($options[0]);
  293.                         break;
  294.                     case 'Y':
  295.                         $options $this->_createOptionList(
  296.                             $this->_options['minYear'],
  297.                             $this->_options['maxYear']
  298.                             $this->_options['minYear'$this->_options['maxYear']? -1: 1
  299.                         );
  300.                         break;
  301.                     case 'y':
  302.                         $options $this->_createOptionList(
  303.                             $this->_options['minYear'],
  304.                             $this->_options['maxYear'],
  305.                             $this->_options['minYear'$this->_options['maxYear']? -1: 1
  306.                         );
  307.                         array_walk($optionscreate_function('&$v,$k','$v = substr($v,-2);'))
  308.                         break;
  309.                     case 'h':
  310.                         $options $this->_createOptionList(112);
  311.                         break;
  312.                     case 'H':
  313.                         $options $this->_createOptionList(023);
  314.                         break;
  315.                     case 'i':
  316.                         $options $this->_createOptionList(059$this->_options['optionIncrement']['i']);
  317.                         break;
  318.                     case 's':
  319.                         $options $this->_createOptionList(059$this->_options['optionIncrement']['s']);
  320.                         break;
  321.                     case 'a':
  322.                         $options = array('am' => 'am''pm' => 'pm');
  323.                         break;
  324.                     case 'A':
  325.                         $options = array('AM' => 'AM''PM' => 'PM');
  326.                         break;
  327.                     case '\\':
  328.                         $backslash  = true;
  329.                         $loadSelect = false;
  330.                         break;
  331.                     default:
  332.                         $separator .= (' ' == $sign'&nbsp;'$sign);
  333.                         $loadSelect = false;
  334.                 }
  335.     
  336.                 if ($loadSelect{
  337.                     if (0 < count($this->_elements)) {
  338.                         $this->_separator[$separator;
  339.                     else {
  340.                         $this->_wrap[0$separator;
  341.                     }
  342.                     $separator '';
  343.                     // Should we add an empty option to the top of the select?
  344.                     if ($this->_options['addEmptyOption']{
  345.                         // Preserve the keys
  346.                         $options = array($this->_options['emptyOptionValue'=> $this->_options['emptyOptionText']$options;
  347.                     }
  348.                     $this->_elements[=new HTML_QuickForm_select($signnull$options$this->getAttributes());
  349.                 }
  350.             }
  351.         }
  352.         $this->_wrap[1$separator ($backslash'\\''');
  353.     }
  354.  
  355.     // }}}
  356.     // {{{ _createOptionList()
  357.  
  358.    /**
  359.     * Creates an option list containing the numbers from the start number to the end, inclusive
  360.     *
  361.     * @param    int     The start number
  362.     * @param    int     The end number
  363.     * @param    int     Increment by this value
  364.     * @access   private
  365.     * @return   array   An array of numeric options.
  366.     */
  367.     function _createOptionList($start$end$step = 1)
  368.     {
  369.         for ($i $start$options = array()$start $end$i >= $end$i <= $end$i += $step{
  370.             $options[$isprintf('%02d'$i);
  371.         }
  372.         return $options;
  373.     }
  374.  
  375.     // }}}
  376.     // {{{ setValue()
  377.  
  378.     function setValue($value)
  379.     {
  380.         if ($this->_options['addEmptyOption'&& empty($value)) {
  381.             $value = array();
  382.         else  if (!is_array($value)) {
  383.             if (!is_numeric($value)) {
  384.                 $value strtotime($value);
  385.             }
  386.             // might be a unix epoch, then we fill all possible values
  387.             $arr explode('-'date('w-d-n-Y-h-H-i-s-a-A'(int)$value));
  388.             $value = array(
  389.                 'D' => $arr[0],
  390.                 'l' => $arr[0],
  391.                 'd' => $arr[1],
  392.                 'M' => $arr[2],
  393.                 'm' => $arr[2],
  394.                 'F' => $arr[2],
  395.                 'Y' => $arr[3],
  396.                 'y' => $arr[3],
  397.                 'h' => $arr[4],
  398.                 'H' => $arr[5],
  399.                 'i' => $arr[6],
  400.                 's' => $arr[7],
  401.                 'a' => $arr[8],
  402.                 'A' => $arr[9]
  403.             );
  404.         }
  405.         parent::setValue($value);
  406.     }
  407.  
  408.     // }}}
  409.     // {{{ toHtml()
  410.  
  411.     function toHtml()
  412.     {
  413.         include_once('HTML/QuickForm/Renderer/Default.php');
  414.         $renderer =new HTML_QuickForm_Renderer_Default();
  415.         $renderer->setElementTemplate($this->_wrap[0'{element}' $this->_wrap[1]);
  416.         parent::accept($renderer);
  417.         return $renderer->toHtml();
  418.     }
  419.  
  420.     // }}}
  421.     // {{{ accept()
  422.  
  423.     function accept(&$renderer$required = false$error = null)
  424.     {
  425.         $renderer->renderElement($this$required$error);
  426.     }
  427.  
  428.     // }}}
  429.     // {{{ onQuickFormEvent()
  430.  
  431.     function onQuickFormEvent($event$arg&$caller)
  432.     {
  433.         if ('updateValue' == $event{
  434.             // we need to call setValue(), 'cause the default/constant value
  435.             // may be in fact a timestamp, not an array
  436.             return HTML_QuickForm_element::onQuickFormEvent($event$arg$caller);
  437.         else {
  438.             return parent::onQuickFormEvent($event$arg$caller);
  439.         }
  440.     }
  441.  
  442.     // }}}
  443. }
  444. ?>

Documentation generated on Mon, 11 Mar 2019 13:52:19 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.