date.php 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529
  1. <?php
  2. /* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
  3. /**
  4. * Class for a group of elements used to input dates (and times).
  5. *
  6. * PHP versions 4 and 5
  7. *
  8. * LICENSE: This source file is subject to version 3.01 of the PHP license
  9. * that is available through the world-wide-web at the following URI:
  10. * http://www.php.net/license/3_01.txt If you did not receive a copy of
  11. * the PHP License and are unable to obtain it through the web, please
  12. * send a note to license@php.net so we can mail you a copy immediately.
  13. *
  14. * @category HTML
  15. * @package HTML_QuickForm
  16. * @author Alexey Borzov <avb@php.net>
  17. * @copyright 2001-2009 The PHP Group
  18. * @license http://www.php.net/license/3_01.txt PHP License 3.01
  19. * @version CVS: $Id: date.php,v 1.62 2009/04/04 21:34:02 avb Exp $
  20. * @link http://pear.php.net/package/HTML_QuickForm
  21. */
  22. /**
  23. * Class for a group of form elements
  24. */
  25. require_once 'HTML/QuickForm/group.php';
  26. /**
  27. * Class for <select></select> elements
  28. */
  29. require_once 'HTML/QuickForm/select.php';
  30. /**
  31. * Class for a group of elements used to input dates (and times).
  32. *
  33. * Inspired by original 'date' element but reimplemented as a subclass
  34. * of HTML_QuickForm_group
  35. *
  36. * @category HTML
  37. * @package HTML_QuickForm
  38. * @author Alexey Borzov <avb@php.net>
  39. * @version Release: 3.2.11
  40. * @since 3.1
  41. */
  42. class HTML_QuickForm_date extends HTML_QuickForm_group
  43. {
  44. // {{{ properties
  45. /**
  46. * Various options to control the element's display.
  47. *
  48. * @access private
  49. * @var array
  50. */
  51. var $_options = array(
  52. 'language' => 'en',
  53. 'format' => 'dMY',
  54. 'minYear' => 2001,
  55. 'maxYear' => 2090,
  56. 'addEmptyOption' => false,
  57. 'emptyOptionValue' => '',
  58. 'emptyOptionText' => '&nbsp;',
  59. 'optionIncrement' => array('i' => 1, 's' => 1)
  60. );
  61. /**
  62. * These complement separators, they are appended to the resultant HTML
  63. * @access private
  64. * @var array
  65. */
  66. var $_wrap = array('', '');
  67. /**
  68. * Options in different languages
  69. *
  70. * Note to potential translators: to avoid encoding problems please send
  71. * your translations with "weird" letters encoded as HTML Unicode entities
  72. *
  73. * @access private
  74. * @var array
  75. */
  76. var $_locale = array(
  77. 'en' => array (
  78. 'weekdays_short'=> array ('Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'),
  79. 'weekdays_long' => array ('Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'),
  80. 'months_short' => array ('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'),
  81. 'months_long' => array ('January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December')
  82. ),
  83. 'de' => array (
  84. 'weekdays_short'=> array ('So', 'Mon', 'Di', 'Mi', 'Do', 'Fr', 'Sa'),
  85. 'weekdays_long' => array ('Sonntag', 'Montag', 'Dienstag', 'Mittwoch', 'Donnerstag', 'Freitag', 'Samstag'),
  86. 'months_short' => array ('Jan', 'Feb', 'M&#xe4;rz', 'April', 'Mai', 'Juni', 'Juli', 'Aug', 'Sept', 'Okt', 'Nov', 'Dez'),
  87. 'months_long' => array ('Januar', 'Februar', 'M&#xe4;rz', 'April', 'Mai', 'Juni', 'Juli', 'August', 'September', 'Oktober', 'November', 'Dezember')
  88. ),
  89. 'fr' => array (
  90. 'weekdays_short'=> array ('Dim', 'Lun', 'Mar', 'Mer', 'Jeu', 'Ven', 'Sam'),
  91. 'weekdays_long' => array ('Dimanche', 'Lundi', 'Mardi', 'Mercredi', 'Jeudi', 'Vendredi', 'Samedi'),
  92. 'months_short' => array ('Jan', 'F&#xe9;v', 'Mar', 'Avr', 'Mai', 'Juin', 'Juil', 'Ao&#xfb;t', 'Sep', 'Oct', 'Nov', 'D&#xe9;c'),
  93. 'months_long' => array ('Janvier', 'F&#xe9;vrier', 'Mars', 'Avril', 'Mai', 'Juin', 'Juillet', 'Ao&#xfb;t', 'Septembre', 'Octobre', 'Novembre', 'D&#xe9;cembre')
  94. ),
  95. 'hu' => array (
  96. 'weekdays_short'=> array ('V', 'H', 'K', 'Sze', 'Cs', 'P', 'Szo'),
  97. 'weekdays_long' => array ('vas&#xe1;rnap', 'h&#xe9;tf&#x151;', 'kedd', 'szerda', 'cs&#xfc;t&#xf6;rt&#xf6;k', 'p&#xe9;ntek', 'szombat'),
  98. 'months_short' => array ('jan', 'feb', 'm&#xe1;rc', '&#xe1;pr', 'm&#xe1;j', 'j&#xfa;n', 'j&#xfa;l', 'aug', 'szept', 'okt', 'nov', 'dec'),
  99. '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')
  100. ),
  101. 'pl' => array (
  102. 'weekdays_short'=> array ('Nie', 'Pn', 'Wt', '&#x15a;r', 'Czw', 'Pt', 'Sob'),
  103. 'weekdays_long' => array ('Niedziela', 'Poniedzia&#x142;ek', 'Wtorek', '&#x15a;roda', 'Czwartek', 'Pi&#x105;tek', 'Sobota'),
  104. 'months_short' => array ('Sty', 'Lut', 'Mar', 'Kwi', 'Maj', 'Cze', 'Lip', 'Sie', 'Wrz', 'Pa&#x17a;', 'Lis', 'Gru'),
  105. 'months_long' => array ('Stycze&#x144;', 'Luty', 'Marzec', 'Kwiecie&#x144;', 'Maj', 'Czerwiec', 'Lipiec', 'Sierpie&#x144;', 'Wrzesie&#x144;', 'Pa&#x17a;dziernik', 'Listopad', 'Grudzie&#x144;')
  106. ),
  107. 'sl' => array (
  108. 'weekdays_short'=> array ('Ned', 'Pon', 'Tor', 'Sre', 'Cet', 'Pet', 'Sob'),
  109. 'weekdays_long' => array ('Nedelja', 'Ponedeljek', 'Torek', 'Sreda', 'Cetrtek', 'Petek', 'Sobota'),
  110. 'months_short' => array ('Jan', 'Feb', 'Mar', 'Apr', 'Maj', 'Jun', 'Jul', 'Avg', 'Sep', 'Okt', 'Nov', 'Dec'),
  111. 'months_long' => array ('Januar', 'Februar', 'Marec', 'April', 'Maj', 'Junij', 'Julij', 'Avgust', 'September', 'Oktober', 'November', 'December')
  112. ),
  113. 'ru' => array (
  114. 'weekdays_short'=> array ('&#x412;&#x441;', '&#x41f;&#x43d;', '&#x412;&#x442;', '&#x421;&#x440;', '&#x427;&#x442;', '&#x41f;&#x442;', '&#x421;&#x431;'),
  115. '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;'),
  116. '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;'),
  117. '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;')
  118. ),
  119. 'es' => array (
  120. 'weekdays_short'=> array ('Dom', 'Lun', 'Mar', 'Mi&#xe9;', 'Jue', 'Vie', 'S&#xe1;b'),
  121. 'weekdays_long' => array ('Domingo', 'Lunes', 'Martes', 'Mi&#xe9;rcoles', 'Jueves', 'Viernes', 'S&#xe1;bado'),
  122. 'months_short' => array ('Ene', 'Feb', 'Mar', 'Abr', 'May', 'Jun', 'Jul', 'Ago', 'Sep', 'Oct', 'Nov', 'Dic'),
  123. 'months_long' => array ('Enero', 'Febrero', 'Marzo', 'Abril', 'Mayo', 'Junio', 'Julio', 'Agosto', 'Septiembre', 'Octubre', 'Noviembre', 'Diciembre')
  124. ),
  125. 'da' => array (
  126. 'weekdays_short'=> array ('S&#xf8;n', 'Man', 'Tir', 'Ons', 'Tor', 'Fre', 'L&#xf8;r'),
  127. 'weekdays_long' => array ('S&#xf8;ndag', 'Mandag', 'Tirsdag', 'Onsdag', 'Torsdag', 'Fredag', 'L&#xf8;rdag'),
  128. 'months_short' => array ('Jan', 'Feb', 'Mar', 'Apr', 'Maj', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dec'),
  129. 'months_long' => array ('Januar', 'Februar', 'Marts', 'April', 'Maj', 'Juni', 'Juli', 'August', 'September', 'Oktober', 'November', 'December')
  130. ),
  131. 'is' => array (
  132. 'weekdays_short'=> array ('Sun', 'M&#xe1;n', '&#xde;ri', 'Mi&#xf0;', 'Fim', 'F&#xf6;s', 'Lau'),
  133. 'weekdays_long' => array ('Sunnudagur', 'M&#xe1;nudagur', '&#xde;ri&#xf0;judagur', 'Mi&#xf0;vikudagur', 'Fimmtudagur', 'F&#xf6;studagur', 'Laugardagur'),
  134. 'months_short' => array ('Jan', 'Feb', 'Mar', 'Apr', 'Ma&#xed;', 'J&#xfa;n', 'J&#xfa;l', '&#xc1;g&#xfa;', 'Sep', 'Okt', 'N&#xf3;v', 'Des'),
  135. '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')
  136. ),
  137. 'it' => array (
  138. 'weekdays_short'=> array ('Dom', 'Lun', 'Mar', 'Mer', 'Gio', 'Ven', 'Sab'),
  139. 'weekdays_long' => array ('Domenica', 'Luned&#xec;', 'Marted&#xec;', 'Mercoled&#xec;', 'Gioved&#xec;', 'Venerd&#xec;', 'Sabato'),
  140. 'months_short' => array ('Gen', 'Feb', 'Mar', 'Apr', 'Mag', 'Giu', 'Lug', 'Ago', 'Set', 'Ott', 'Nov', 'Dic'),
  141. 'months_long' => array ('Gennaio', 'Febbraio', 'Marzo', 'Aprile', 'Maggio', 'Giugno', 'Luglio', 'Agosto', 'Settembre', 'Ottobre', 'Novembre', 'Dicembre')
  142. ),
  143. 'sk' => array (
  144. 'weekdays_short'=> array ('Ned', 'Pon', 'Uto', 'Str', '&#x8a;tv', 'Pia', 'Sob'),
  145. 'weekdays_long' => array ('Nede&#x17e;a', 'Pondelok', 'Utorok', 'Streda', '&#x8a;tvrtok', 'Piatok', 'Sobota'),
  146. 'months_short' => array ('Jan', 'Feb', 'Mar', 'Apr', 'M&#xe1;j', 'J&#xfa;n', 'J&#xfa;l', 'Aug', 'Sep', 'Okt', 'Nov', 'Dec'),
  147. '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')
  148. ),
  149. 'cs' => array (
  150. 'weekdays_short'=> array ('Ne', 'Po', '&#xda;t', 'St', '&#x10c;t', 'P&#xe1;', 'So'),
  151. 'weekdays_long' => array ('Ned&#x11b;le', 'Pond&#x11b;l&#xed;', '&#xda;ter&#xfd;', 'St&#x159;eda', '&#x10c;tvrtek', 'P&#xe1;tek', 'Sobota'),
  152. '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'),
  153. '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')
  154. ),
  155. 'hy' => array (
  156. 'weekdays_short'=> array ('&#x53f;&#x580;&#x56f;', '&#x535;&#x580;&#x56f;', '&#x535;&#x580;&#x584;', '&#x549;&#x580;&#x584;', '&#x540;&#x576;&#x563;', '&#x548;&#x582;&#x580;', '&#x547;&#x562;&#x569;'),
  157. '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;'),
  158. '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;'),
  159. '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;')
  160. ),
  161. 'nl' => array (
  162. 'weekdays_short'=> array ('Zo', 'Ma', 'Di', 'Wo', 'Do', 'Vr', 'Za'),
  163. 'weekdays_long' => array ('Zondag', 'Maandag', 'Dinsdag', 'Woensdag', 'Donderdag', 'Vrijdag', 'Zaterdag'),
  164. 'months_short' => array ('Jan', 'Feb', 'Mar', 'Apr', 'Mei', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dec'),
  165. 'months_long' => array ('Januari', 'Februari', 'Maart', 'April', 'Mei', 'Juni', 'Juli', 'Augustus', 'September', 'Oktober', 'November', 'December')
  166. ),
  167. 'et' => array (
  168. 'weekdays_short'=> array ('P', 'E', 'T', 'K', 'N', 'R', 'L'),
  169. 'weekdays_long' => array ('P&#xfc;hap&#xe4;ev', 'Esmasp&#xe4;ev', 'Teisip&#xe4;ev', 'Kolmap&#xe4;ev', 'Neljap&#xe4;ev', 'Reede', 'Laup&#xe4;ev'),
  170. 'months_short' => array ('Jaan', 'Veebr', 'M&#xe4;rts', 'Aprill', 'Mai', 'Juuni', 'Juuli', 'Aug', 'Sept', 'Okt', 'Nov', 'Dets'),
  171. 'months_long' => array ('Jaanuar', 'Veebruar', 'M&#xe4;rts', 'Aprill', 'Mai', 'Juuni', 'Juuli', 'August', 'September', 'Oktoober', 'November', 'Detsember')
  172. ),
  173. 'tr' => array (
  174. 'weekdays_short'=> array ('Paz', 'Pzt', 'Sal', '&#xc7;ar', 'Per', 'Cum', 'Cts'),
  175. 'weekdays_long' => array ('Pazar', 'Pazartesi', 'Sal&#x131;', '&#xc7;ar&#x15f;amba', 'Per&#x15f;embe', 'Cuma', 'Cumartesi'),
  176. 'months_short' => array ('Ock', '&#x15e;bt', 'Mrt', 'Nsn', 'Mys', 'Hzrn', 'Tmmz', 'A&#x11f;st', 'Eyl', 'Ekm', 'Ksm', 'Arlk'),
  177. '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')
  178. ),
  179. 'no' => array (
  180. 'weekdays_short'=> array ('S&#xf8;n', 'Man', 'Tir', 'Ons', 'Tor', 'Fre', 'L&#xf8;r'),
  181. 'weekdays_long' => array ('S&#xf8;ndag', 'Mandag', 'Tirsdag', 'Onsdag', 'Torsdag', 'Fredag', 'L&#xf8;rdag'),
  182. 'months_short' => array ('Jan', 'Feb', 'Mar', 'Apr', 'Mai', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Des'),
  183. 'months_long' => array ('Januar', 'Februar', 'Mars', 'April', 'Mai', 'Juni', 'Juli', 'August', 'September', 'Oktober', 'November', 'Desember')
  184. ),
  185. 'eo' => array (
  186. 'weekdays_short'=> array ('Dim', 'Lun', 'Mar', 'Mer', '&#x134;a&#x16D;', 'Ven', 'Sab'),
  187. 'weekdays_long' => array ('Diman&#x109;o', 'Lundo', 'Mardo', 'Merkredo', '&#x134;a&#x16D;do', 'Vendredo', 'Sabato'),
  188. 'months_short' => array ('Jan', 'Feb', 'Mar', 'Apr', 'Maj', 'Jun', 'Jul', 'A&#x16D;g', 'Sep', 'Okt', 'Nov', 'Dec'),
  189. 'months_long' => array ('Januaro', 'Februaro', 'Marto', 'Aprilo', 'Majo', 'Junio', 'Julio', 'A&#x16D;gusto', 'Septembro', 'Oktobro', 'Novembro', 'Decembro')
  190. ),
  191. 'ua' => array (
  192. 'weekdays_short'=> array('&#x41d;&#x434;&#x43b;', '&#x41f;&#x43d;&#x434;', '&#x412;&#x442;&#x440;', '&#x421;&#x440;&#x434;', '&#x427;&#x442;&#x432;', '&#x41f;&#x442;&#x43d;', '&#x421;&#x431;&#x442;'),
  193. 'weekdays_long' => array('&#x41d;&#x435;&#x434;&#x456;&#x43b;&#x44f;', '&#x41f;&#x43e;&#x43d;&#x435;&#x434;&#x456;&#x43b;&#x43e;&#x43a;', '&#x412;&#x456;&#x432;&#x442;&#x43e;&#x440;&#x43e;&#x43a;', '&#x421;&#x435;&#x440;&#x435;&#x434;&#x430;', '&#x427;&#x435;&#x442;&#x432;&#x435;&#x440;', '&#x41f;\'&#x44f;&#x442;&#x43d;&#x438;&#x446;&#x44f;', '&#x421;&#x443;&#x431;&#x43e;&#x442;&#x430;'),
  194. 'months_short' => array('&#x421;&#x456;&#x447;', '&#x41b;&#x44e;&#x442;', '&#x411;&#x435;&#x440;', '&#x41a;&#x432;&#x456;', '&#x422;&#x440;&#x430;', '&#x427;&#x435;&#x440;', '&#x41b;&#x438;&#x43f;', '&#x421;&#x435;&#x440;', '&#x412;&#x435;&#x440;', '&#x416;&#x43e;&#x432;', '&#x41b;&#x438;&#x441;', '&#x413;&#x440;&#x443;'),
  195. 'months_long' => array('&#x421;&#x456;&#x447;&#x435;&#x43d;&#x44c;', '&#x41b;&#x44e;&#x442;&#x438;&#x439;', '&#x411;&#x435;&#x440;&#x435;&#x437;&#x435;&#x43d;&#x44c;', '&#x41a;&#x432;&#x456;&#x442;&#x435;&#x43d;&#x44c;', '&#x422;&#x440;&#x430;&#x432;&#x435;&#x43d;&#x44c;', '&#x427;&#x435;&#x440;&#x432;&#x435;&#x43d;&#x44c;', '&#x41b;&#x438;&#x43f;&#x435;&#x43d;&#x44c;', '&#x421;&#x435;&#x440;&#x43f;&#x435;&#x43d;&#x44c;', '&#x412;&#x435;&#x440;&#x435;&#x441;&#x435;&#x43d;&#x44c;', '&#x416;&#x43e;&#x432;&#x442;&#x435;&#x43d;&#x44c;', '&#x41b;&#x438;&#x441;&#x442;&#x43e;&#x43f;&#x430;&#x434;', '&#x413;&#x440;&#x443;&#x434;&#x435;&#x43d;&#x44c;')
  196. ),
  197. 'ro' => array (
  198. 'weekdays_short'=> array ('Dum', 'Lun', 'Mar', 'Mie', 'Joi', 'Vin', 'Sam'),
  199. 'weekdays_long' => array ('Duminica', 'Luni', 'Marti', 'Miercuri', 'Joi', 'Vineri', 'Sambata'),
  200. 'months_short' => array ('Ian', 'Feb', 'Mar', 'Apr', 'Mai', 'Iun', 'Iul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'),
  201. 'months_long' => array ('Ianuarie', 'Februarie', 'Martie', 'Aprilie', 'Mai', 'Iunie', 'Iulie', 'August', 'Septembrie', 'Octombrie', 'Noiembrie', 'Decembrie')
  202. ),
  203. 'he' => array (
  204. 'weekdays_short'=> array ('&#1512;&#1488;&#1513;&#1493;&#1503;', '&#1513;&#1504;&#1497;', '&#1513;&#1500;&#1497;&#1513;&#1497;', '&#1512;&#1489;&#1497;&#1506;&#1497;', '&#1495;&#1502;&#1497;&#1513;&#1497;', '&#1513;&#1497;&#1513;&#1497;', '&#1513;&#1489;&#1514;'),
  205. 'weekdays_long' => array ('&#1497;&#1493;&#1501; &#1512;&#1488;&#1513;&#1493;&#1503;', '&#1497;&#1493;&#1501; &#1513;&#1504;&#1497;', '&#1497;&#1493;&#1501; &#1513;&#1500;&#1497;&#1513;&#1497;', '&#1497;&#1493;&#1501; &#1512;&#1489;&#1497;&#1506;&#1497;', '&#1497;&#1493;&#1501; &#1495;&#1502;&#1497;&#1513;&#1497;', '&#1497;&#1493;&#1501; &#1513;&#1497;&#1513;&#1497;', '&#1513;&#1489;&#1514;'),
  206. 'months_short' => array ('&#1497;&#1504;&#1493;&#1488;&#1512;', '&#1508;&#1489;&#1512;&#1493;&#1488;&#1512;', '&#1502;&#1512;&#1509;', '&#1488;&#1508;&#1512;&#1497;&#1500;', '&#1502;&#1488;&#1497;', '&#1497;&#1493;&#1504;&#1497;', '&#1497;&#1493;&#1500;&#1497;', '&#1488;&#1493;&#1490;&#1493;&#1505;&#1496;', '&#1505;&#1508;&#1496;&#1502;&#1489;&#1512;', '&#1488;&#1493;&#1511;&#1496;&#1493;&#1489;&#1512;', '&#1504;&#1493;&#1489;&#1502;&#1489;&#1512;', '&#1491;&#1510;&#1502;&#1489;&#1512;'),
  207. 'months_long' => array ('&#1497;&#1504;&#1493;&#1488;&#1512;', '&#1508;&#1489;&#1512;&#1493;&#1488;&#1512;', '&#1502;&#1512;&#1509;', '&#1488;&#1508;&#1512;&#1497;&#1500;', '&#1502;&#1488;&#1497;', '&#1497;&#1493;&#1504;&#1497;', '&#1497;&#1493;&#1500;&#1497;', '&#1488;&#1493;&#1490;&#1493;&#1505;&#1496;', '&#1505;&#1508;&#1496;&#1502;&#1489;&#1512;', '&#1488;&#1493;&#1511;&#1496;&#1493;&#1489;&#1512;', '&#1504;&#1493;&#1489;&#1502;&#1489;&#1512;', '&#1491;&#1510;&#1502;&#1489;&#1512;')
  208. ),
  209. 'sv' => array (
  210. 'weekdays_short'=> array ('S&#xf6;n', 'M&#xe5;n', 'Tis', 'Ons', 'Tor', 'Fre', 'L&#xf6;r'),
  211. 'weekdays_long' => array ('S&#xf6;ndag', 'M&#xe5;ndag', 'Tisdag', 'Onsdag', 'Torsdag', 'Fredag', 'L&#xf6;rdag'),
  212. 'months_short' => array ('Jan', 'Feb', 'Mar', 'Apr', 'Maj', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dec'),
  213. 'months_long' => array ('Januari', 'Februari', 'Mars', 'April', 'Maj', 'Juni', 'Juli', 'Augusti', 'September', 'Oktober', 'November', 'December')
  214. ),
  215. 'pt' => array (
  216. 'weekdays_short'=> array ('Dom', 'Seg', 'Ter', 'Qua', 'Qui', 'Sex', 'S&aacute;b'),
  217. 'weekdays_long' => array ('Domingo', 'Segunda-feira', 'Ter&ccedil;a-feira', 'Quarta-feira', 'Quinta-feira', 'Sexta-feira', 'S&aacute;bado'),
  218. 'months_short' => array ('Jan', 'Fev', 'Mar', 'Abr', 'Mai', 'Jun', 'Jul', 'Ago', 'Set', 'Out', 'Nov', 'Dez'),
  219. 'months_long' => array ('Janeiro', 'Fevereiro', 'Mar&ccedil;o', 'Abril', 'Maio', 'Junho', 'Julho', 'Agosto', 'Setembro', 'Outubro', 'Novembro', 'Dezembro')
  220. ),
  221. 'tw' => array (
  222. 'weekdays_short'=> array ('&#36913;&#26085;','&#36913;&#19968;', '&#36913;&#20108;','&#36913;&#19977;', '&#36913;&#22235;','&#36913;&#20116;', '&#36913;&#20845;'),
  223. 'weekdays_long' => array ('&#26143;&#26399;&#26085;', '&#26143;&#26399;&#19968;', '&#26143;&#26399;&#20108;', '&#26143;&#26399;&#19977;', '&#26143;&#26399;&#22235;', '&#26143;&#26399;&#20116;', '&#26143;&#26399;&#20845;'),
  224. 'months_short' => array ('&#19968;&#26376;', '&#20108;&#26376;', '&#19977;&#26376;', '&#22235;&#26376;', '&#20116;&#26376;', '&#20845;&#26376;', '&#19971;&#26376;', '&#20843;&#26376;', '&#20061;&#26376;', '&#21313;&#26376;', '&#21313;&#19968;&#26376;', '&#21313;&#20108;&#26376;'),
  225. 'months_long' => array ('&#19968;&#26376;', '&#20108;&#26376;', '&#19977;&#26376;', '&#22235;&#26376;', '&#20116;&#26376;', '&#20845;&#26376;', '&#19971;&#26376;', '&#20843;&#26376;', '&#20061;&#26376;', '&#21313;&#26376;', '&#21313;&#19968;&#26376;', '&#21313;&#20108;&#26376;')
  226. ),
  227. 'pt-br' => array (
  228. 'weekdays_short'=> array ('Dom', 'Seg', 'Ter', 'Qua', 'Qui', 'Sex', 'S&aacute;b'),
  229. 'weekdays_long' => array ('Domingo', 'Segunda', 'Ter&ccedil;a', 'Quarta', 'Quinta', 'Sexta', 'S&aacute;bado'),
  230. 'months_short' => array ('Jan', 'Fev', 'Mar', 'Abr', 'Mai', 'Jun', 'Jul', 'Ago', 'Set', 'Out', 'Nov', 'Dez'),
  231. 'months_long' => array ('Janeiro', 'Fevereiro', 'Mar&ccedil;o', 'Abril', 'Maio', 'Junho', 'Julho', 'Agosto', 'Setembro', 'Outubro', 'Novembro', 'Dezembro')
  232. )
  233. );
  234. // }}}
  235. // {{{ constructor
  236. /**
  237. * Class constructor
  238. *
  239. * The following keys may appear in $options array:
  240. * - 'language': date language
  241. * - 'format': Format of the date, based on PHP's date() function.
  242. * The following characters are currently recognised in format string:
  243. * <pre>
  244. * D => Short names of days
  245. * l => Long names of days
  246. * d => Day numbers
  247. * M => Short names of months
  248. * F => Long names of months
  249. * m => Month numbers
  250. * Y => Four digit year
  251. * y => Two digit year
  252. * h => 12 hour format
  253. * H => 23 hour format
  254. * i => Minutes
  255. * s => Seconds
  256. * a => am/pm
  257. * A => AM/PM
  258. * </pre>
  259. * - 'minYear': Minimum year in year select
  260. * - 'maxYear': Maximum year in year select
  261. * - 'addEmptyOption': Should an empty option be added to the top of
  262. * each select box?
  263. * - 'emptyOptionValue': The value passed by the empty option.
  264. * - 'emptyOptionText': The text displayed for the empty option.
  265. * - 'optionIncrement': Step to increase the option values by (works for 'i' and 's')
  266. *
  267. * @access public
  268. * @param string Element's name
  269. * @param mixed Label(s) for an element
  270. * @param array Options to control the element's display
  271. * @param mixed Either a typical HTML attribute string or an associative array
  272. */
  273. function HTML_QuickForm_date($elementName = null, $elementLabel = null, $options = array(), $attributes = null)
  274. {
  275. $this->HTML_QuickForm_element($elementName, $elementLabel, $attributes);
  276. $this->_persistantFreeze = true;
  277. $this->_appendName = true;
  278. $this->_type = 'date';
  279. // Added by Ivan Tcholakov, 16-MAR-2010.
  280. $current_year = intval(api_get_local_time());
  281. $this->_options['minYear'] = $current_year - 9;
  282. $this->_options['maxYear'] = $current_year + 1;
  283. //
  284. // set the options, do not bother setting bogus ones
  285. if (is_array($options)) {
  286. foreach ($options as $name => $value) {
  287. if ('language' == $name) {
  288. $this->_options['language'] = isset($this->_locale[$value])? $value: 'en';
  289. } elseif (isset($this->_options[$name])) {
  290. if (is_array($value) && is_array($this->_options[$name])) {
  291. $this->_options[$name] = @array_merge($this->_options[$name], $value);
  292. } else {
  293. $this->_options[$name] = $value;
  294. }
  295. }
  296. }
  297. }
  298. }
  299. function _createElements()
  300. {
  301. $this->_separator = $this->_elements = array();
  302. $separator = '';
  303. $locale =& $this->_locale[$this->_options['language']];
  304. $backslash = false;
  305. // Modified by Ivan Tcholakov, 16-MAR-2010.
  306. for ($i = 0, $length = api_strlen($this->_options['format']); $i < $length; $i++) {
  307. $sign = api_substr($this->_options['format'], $i, 1);
  308. //
  309. if ($backslash) {
  310. $backslash = false;
  311. $separator .= $sign;
  312. } else {
  313. $loadSelect = true;
  314. switch ($sign) {
  315. case 'D':
  316. // Sunday is 0 like with 'w' in date()
  317. $options = $locale['weekdays_short'];
  318. break;
  319. case 'l':
  320. $options = $locale['weekdays_long'];
  321. break;
  322. case 'd':
  323. $options = $this->_createOptionList(1, 31);
  324. break;
  325. case 'M':
  326. $options = $locale['months_short'];
  327. array_unshift($options , '');
  328. unset($options[0]);
  329. break;
  330. case 'm':
  331. $options = $this->_createOptionList(1, 12);
  332. break;
  333. case 'F':
  334. $options = $locale['months_long'];
  335. array_unshift($options , '');
  336. unset($options[0]);
  337. break;
  338. case 'Y':
  339. $options = $this->_createOptionList(
  340. $this->_options['minYear'],
  341. $this->_options['maxYear'],
  342. $this->_options['minYear'] > $this->_options['maxYear']? -1: 1
  343. );
  344. break;
  345. case 'y':
  346. $options = $this->_createOptionList(
  347. $this->_options['minYear'],
  348. $this->_options['maxYear'],
  349. $this->_options['minYear'] > $this->_options['maxYear']? -1: 1
  350. );
  351. array_walk($options, create_function('&$v,$k','$v = substr($v,-2);'));
  352. break;
  353. case 'h':
  354. $options = $this->_createOptionList(1, 12);
  355. break;
  356. case 'g':
  357. $options = $this->_createOptionList(1, 12);
  358. array_walk($options, create_function('&$v,$k', '$v = intval($v);'));
  359. break;
  360. case 'H':
  361. $options = $this->_createOptionList(0, 23);
  362. break;
  363. case 'i':
  364. $options = $this->_createOptionList(0, 59, $this->_options['optionIncrement']['i']);
  365. break;
  366. case 's':
  367. $options = $this->_createOptionList(0, 59, $this->_options['optionIncrement']['s']);
  368. break;
  369. case 'a':
  370. $options = array('am' => 'am', 'pm' => 'pm');
  371. break;
  372. case 'A':
  373. $options = array('AM' => 'AM', 'PM' => 'PM');
  374. break;
  375. case 'W':
  376. $options = $this->_createOptionList(1, 53);
  377. break;
  378. case '\\':
  379. $backslash = true;
  380. $loadSelect = false;
  381. break;
  382. default:
  383. $separator .= (' ' == $sign? '&nbsp;': $sign);
  384. $loadSelect = false;
  385. }
  386. if ($loadSelect) {
  387. if (0 < count($this->_elements)) {
  388. $this->_separator[] = $separator;
  389. } else {
  390. $this->_wrap[0] = $separator;
  391. }
  392. $separator = '';
  393. // Should we add an empty option to the top of the select?
  394. if (!is_array($this->_options['addEmptyOption']) && $this->_options['addEmptyOption'] ||
  395. is_array($this->_options['addEmptyOption']) && !empty($this->_options['addEmptyOption'][$sign])) {
  396. // Using '+' array operator to preserve the keys
  397. if (is_array($this->_options['emptyOptionText']) && !empty($this->_options['emptyOptionText'][$sign])) {
  398. $options = array($this->_options['emptyOptionValue'] => $this->_options['emptyOptionText'][$sign]) + $options;
  399. } else {
  400. $options = array($this->_options['emptyOptionValue'] => $this->_options['emptyOptionText']) + $options;
  401. }
  402. }
  403. $this->_elements[] = new HTML_QuickForm_select($sign, null, $options, $this->getAttributes());
  404. }
  405. }
  406. }
  407. $this->_wrap[1] = $separator . ($backslash? '\\': '');
  408. }
  409. // }}}
  410. // {{{ _createOptionList()
  411. /**
  412. * Creates an option list containing the numbers from the start number to the end, inclusive
  413. *
  414. * @param int The start number
  415. * @param int The end number
  416. * @param int Increment by this value
  417. * @access private
  418. * @return array An array of numeric options.
  419. */
  420. function _createOptionList($start, $end, $step = 1)
  421. {
  422. for ($i = $start, $options = array(); $start > $end? $i >= $end: $i <= $end; $i += $step) {
  423. $options[$i] = sprintf('%02d', $i);
  424. }
  425. return $options;
  426. }
  427. // }}}
  428. // {{{ _trimLeadingZeros()
  429. /**
  430. * Trims leading zeros from the (numeric) string
  431. *
  432. * @param string A numeric string, possibly with leading zeros
  433. * @return string String with leading zeros removed
  434. */
  435. function _trimLeadingZeros($str)
  436. {
  437. if (0 == strcmp($str, $this->_options['emptyOptionValue'])) {
  438. return $str;
  439. }
  440. $trimmed = ltrim($str, '0');
  441. return strlen($trimmed)? $trimmed: '0';
  442. }
  443. // }}}
  444. // {{{ setValue()
  445. function setValue($value)
  446. {
  447. if (empty($value)) {
  448. $value = array();
  449. } elseif (is_scalar($value)) {
  450. if (!is_numeric($value)) {
  451. $value = strtotime($value);
  452. }
  453. // might be a unix epoch, then we fill all possible values
  454. $arr = explode('-', date('w-j-n-Y-g-G-i-s-a-A-W', (int)$value));
  455. $value = array(
  456. 'D' => $arr[0],
  457. 'l' => $arr[0],
  458. 'd' => $arr[1],
  459. 'M' => $arr[2],
  460. 'm' => $arr[2],
  461. 'F' => $arr[2],
  462. 'Y' => $arr[3],
  463. 'y' => $arr[3],
  464. 'h' => $arr[4],
  465. 'g' => $arr[4],
  466. 'H' => $arr[5],
  467. 'i' => $this->_trimLeadingZeros($arr[6]),
  468. 's' => $this->_trimLeadingZeros($arr[7]),
  469. 'a' => $arr[8],
  470. 'A' => $arr[9],
  471. 'W' => $this->_trimLeadingZeros($arr[10])
  472. );
  473. } else {
  474. $value = array_map(array($this, '_trimLeadingZeros'), $value);
  475. }
  476. parent::setValue($value);
  477. }
  478. // }}}
  479. // {{{ toHtml()
  480. function toHtml()
  481. {
  482. include_once 'HTML/QuickForm/Renderer/Default.php';
  483. $renderer = new HTML_QuickForm_Renderer_Default();
  484. $renderer->setElementTemplate('{element}');
  485. parent::accept($renderer);
  486. return $this->_wrap[0] . $renderer->toHtml() . $this->_wrap[1];
  487. }
  488. // }}}
  489. // {{{ accept()
  490. function accept(&$renderer, $required = false, $error = null)
  491. {
  492. $renderer->renderElement($this, $required, $error);
  493. }
  494. // }}}
  495. // {{{ onQuickFormEvent()
  496. function onQuickFormEvent($event, $arg, &$caller)
  497. {
  498. if ('updateValue' == $event) {
  499. // we need to call setValue(), 'cause the default/constant value
  500. // may be in fact a timestamp, not an array
  501. return HTML_QuickForm_element::onQuickFormEvent($event, $arg, $caller);
  502. } else {
  503. return parent::onQuickFormEvent($event, $arg, $caller);
  504. }
  505. }
  506. }