-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathDate.php
More file actions
1781 lines (1444 loc) · 70.6 KB
/
Date.php
File metadata and controls
1781 lines (1444 loc) · 70.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* Class for date controls.
*
* @author Stefan Gabos <contact@stefangabos.ro>
* @copyright (c) 2006 - 2016 Stefan Gabos
* @package Controls
*/
class Zebra_Form_Date extends Zebra_Form_Control
{
/**
* Adds a date control to the form.
*
* <b>Do not instantiate this class directly! Use the {@link Zebra_Form::add() add()} method instead!</b>
*
* The output of this control will be a {@link Zebra_Form_Text textbox} control with an icon to the right of it.<br>
* Clicking the icon will open an inline JavaScript date picker.<br>
*
* <code>
* // create a new form
* $form = new Zebra_Form('my_form');
*
* // add a date control to the form
* $mydate = $form->add('date', 'my_date', date('Y-m-d'));
*
* // you *have* to set the "date" rule
* $mydate->set_rule(array(
* 'date' => array('error', 'Invalid date specified!'),
* ));
*
* // set the date's format
* $mydate->format('M d, Y');
*
* // don't forget to always call this method before rendering the form
* if ($form->validate()) {
*
* // get the date in YYYY-MM-DD format so you can play with is easily
* $date = $mydate->get_date();
*
* }
*
* // output the form using an automatically generated template
* $form->render();
* </code>
*
* @param string $id Unique name to identify the control in the form.
*
* The control's <b>name</b> attribute will be the same as the <b>id</b> attribute!
*
* This is the name to be used when referring to the control's value in the
* POST/GET superglobals, after the form is submitted.
*
* This is also the name of the variable to be used in custom template files, in
* order to display the control.
*
* <code>
* // in a template file, in order to print the generated HTML
* // for a control named "my_date", one would use:
* echo $my_date;
* </code>
*
* @param string $default (Optional) Default date, formatted according to {@link format() format}.
*
* @param array $attributes (Optional) An array of attributes valid for
* {@link http://www.w3.org/TR/REC-html40/interact/forms.html#h-17.4 input}
* controls (size, readonly, style, etc)
*
* Must be specified as an associative array, in the form of <i>attribute => value</i>.
* <code>
* // setting the "readonly" attribute
* $obj = $form->add(
* 'date',
* 'my_date',
* '',
* array(
* 'readonly' => 'readonly'
* )
* );
* </code>
*
* See {@link Zebra_Form_Control::set_attributes() set_attributes()} on how to set
* attributes, other than through the constructor.
*
* The following attributes are automatically set when the control is created and
* should not be altered manually:<br>
*
* <b>type</b>, <b>id</b>, <b>name</b>, <b>value</b>, <b>class</b>
*
* @return void
*/
function __construct($id, $default = '', $attributes = '')
{
// call the constructor of the parent class
parent::__construct();
// set the private attributes of this control
// these attributes are private for this control and are for internal use only
// and will not be rendered by the _render_attributes() method
$this->private_attributes = array(
'locked',
'disable_xss_filters',
'disable_zebra_datepicker',
'date',
'always_visible',
'container',
'custom_classes',
'days',
'days_abbr',
'default_position',
'direction',
'disabled_dates',
'enabled_dates',
'first_day_of_week',
'format',
'header_captions',
'header_navigation',
'icon_position',
'inside_icon',
'lang_clear_date',
'months',
'months_abbr',
'offset',
'open_icon_only',
'pair',
'readonly_element',
'show_clear_date',
'show_icon',
'show_other_months',
'show_select_today',
'show_week_number',
'select_other_months',
'start_date',
'strict',
'view',
'weekend_days',
'zero_pad',
);
// set the javascript attributes of this control
// these attributes will be used by the JavaScript date picker object
$this->javascript_attributes = array(
'always_visible',
'container',
'custom_classes',
'days',
'days_abbr',
'default_position',
'direction',
'disabled_dates',
'enabled_dates',
'first_day_of_week',
'format',
'header_captions',
'header_navigation',
'icon_position',
'inside_icon',
'lang_clear_date',
'months',
'months_abbr',
'offset',
'pair',
'readonly_element',
'show_clear_date',
'show_icon',
'show_other_months',
'show_select_today',
'show_week_number',
'select_other_months',
'start_date',
'strict',
'view',
'weekend_days',
'zero_pad',
);
// set the default attributes for the text control
// put them in the order you'd like them rendered
$this->set_attributes(
array(
'type' => 'text',
'name' => $id,
'id' => $id,
'value' => $default,
'class' => 'control text date',
'always_visible' => null,
'days' => null,
'days_abbr' => null,
'direction' => null,
'disable_zebra_datepicker' => false,
'disabled_dates' => null,
'enabled_dates' => null,
'first_day_of_week' => null,
'format' => 'Y-m-d',
'header_captions' => null,
'header_navigation' => null,
'inside_icon' => null,
'months' => null,
'months_abbr' => null,
'offset' => null,
'pair' => null,
'readonly_element' => null,
'show_clear_date' => null,
'show_other_months' => null,
'show_select_today' => null,
'show_week_number' => null,
'select_other_months' => null,
'start_date' => null,
'strict' => null,
'view' => null,
'weekend_days' => null,
'zero_pad' => null,
)
);
// if "class" is amongst user specified attributes
if (is_array($attributes) && isset($attributes['class'])) {
// we need to set the "class" attribute like this, so it doesn't overwrite previous values
$this->set_attributes(array('class' => $attributes['class']), false);
// make sure we don't set it again below
unset($attributes['class']);
}
// sets user specified attributes for the control
$this->set_attributes($attributes);
}
/**
* Should the date picker be always visible?
*
* Setting this property to a jQuery element will result in the date picker being always visible, the indicated
* element acting as the date picker's container;
*
* Note that when this property is set to TRUE, the {@link always_show_clear()} will be automatically set to TRUE.
*
* <code>
* $date = $form->add('date', 'my_date');
*
* // an element having the ID "container"
* // will be the date picker's container
* $date->always_visible('$("#container")');
* </code>
*
* @param string $element A jQuery selector pointing to an existing element from the page to be used as the
* date picker's container.
*
* @return void
*/
function always_visible($element)
{
// set the date picker's attribute
$this->set_attributes(array('always_visible' => $element));
}
/**
* Use this method to instruct the library to open a date picker inside a specific element - useful when you want
* the date picker to open at a specific position.
*
* <code>
* $date = $form->add('date', 'my_date');
*
* // the date picker will open inside this element
* $date->container('$("#container")');
* </code>
*
* @param string $element A jQuery selector pointing to an existing element from the page to be used as the
* date picker's container.
*
* By default, all date pickers are placed at the end of the <body> element
*
* @since 2.9.8
*
* @return void
*/
function container($element)
{
// set the date picker's attribute
$this->set_attributes(array('container' => $element));
}
/**
* Dates that should have custom classes applied to them.
*
* <code>
* $date = $form->add('date', 'my_date');
*
* // apply "myclass1" custom class to the first day, of every month, of every year
* $date->custom_classes(array(
* 'myclass1' => array('01 * *'),
* ));
* </code>
*
* @param array $custom_classes An array in the form of
*
* <code>
* array(
* 'myclass1': array(dates_to_apply_myclass1_to),
* 'myclass2': array(dates_to_apply_myclass2_to),
* )
* </code>
*
* ...where "dates_to_apply_myclassx_to" is an array of dates in the same format as
* required for {@link disabled_dates} property.
*
* Custom classes will be applied <b>only</b> in the day picker view and not on
* month/year views! Also note that the class name will have the “_disabled” suffix
* added if the day the class is applied to is disabled.
*
* In order for the styles in your custom classes to be applied, make sure you are
* using the following syntax:
*
* <code>
* .Zebra_DatePicker .dp_daypicker td.myclass1 { .. }
* .Zebra_DatePicker .dp_daypicker td.myclass1_disabled { .. }
* </code>
*
* Default is FALSE, no custom classes
*
* @since 2.9.8
*
* @return void
*/
function custom_classes($custom_classes)
{
// set the date picker's attribute
$this->set_attributes(array('custom_classes' => $custom_classes));
}
/**
* The position of the date picker relative to the element it is attached to.
*
* Note that, regardless of this setting, the date picker's position will be automatically adjusted to fit in the
* view port, if needed.
*
* <i>This property will be ignored if {@link always_visible} or {@link container} properties are set</i>
*
* <code>
* $date = $form->add('date', 'my_date');
*
* // the date picker will open *below* the element is attached to
* $date->default_position('below');
* </code>
*
* @param string $position The position of the date picker relative to the element it is attached to.
*
* Possible values are "above" and "below".
*
* Default is "above"
*
* @since 2.9.8
*
* @return void
*/
function default_position($position)
{
// set the date picker's attribute
$this->set_attributes(array('default_position' => $position));
}
/**
* Direction of the calendar.
*
* <code>
* $obj = $form->add('date', 'mydate')
*
* // calendar starts tomorrow and seven days after that are selectable
* $obj->direction(array(1, 7));
*
* // calendar starts today and seven days after that are selectable
* $obj->direction(array(true, 7));
*
* // calendar starts on January 1st 2013 and has no ending date
* // (assuming "format" is YYYY-MM-DD)
* $obj->direction(array('2013-01-01', false));
*
* // calendar ends today and starts on January 1st 2012
* // assuming "format" is YYYY-MM-DD)
* $obj->direction(array(false, '2012-01-01'));
* </code>
*
* @param mixed $direction A positive or negative integer:
*
* - n (a positive integer) creates a future-only calendar beginning at n days
* after today;
*
* - -n (a negative integer) creates a past-only calendar ending at n days
* before today;
*
* - if n is 0, the calendar has no restrictions.
*
* Use boolean TRUE for a future-only calendar starting with today and use boolean
* FALSE for a past-only calendar ending today.
*
* You may also set this property to an array with two elements in the following
* combinations:
*
* - first item is boolean TRUE (calendar starts today), an integer > 0 (calendar
* starts n days after today), or a valid date given in the format defined by
* the "format" attribute (calendar starts at the specified date), and the second
* item is boolean FALSE (the calendar has no ending date), an integer > 0 (calendar
* ends n days after the starting date), or a valid date given in the format
* defined by the "format" attribute and which occurs after the starting date
* (calendar ends at the specified date)
*
* - first item is boolean FALSE (calendar ends today), an integer < 0 (calendar
* ends n days before today), or a valid date given in the format defined by the
* "format" attribute (calendar ends at the specified date), and the second item
* is an integer > 0 (calendar ends n days before the ending date), or a valid
* date given in the format defined by the "format" attribute and which occurs
* before the starting date (calendar starts at the specified date)
*
*
* Note that {@link disabled_dates()} will still apply!
*
* Default is 0 (no restrictions).
*
* @return void
*/
function direction($direction)
{
// set the date picker's attribute
$this->set_attributes(array('direction' => $direction));
}
/**
* Disables selection of specific dates or range of dates in the calendar.
*
* <code>
* $obj = $form->add('date', 'mydate')
*
* // disable January 1, 2012
* $obj->disabled_dates(array('1 1 2012'));
*
* // disable all days in January 2012
* $obj->disabled_dates(array('* 1 2012'));
*
* // disable January 1 through 10 in 2012
* $obj->disabled_dates(array('1-10 1 2012'));
*
* // disable January 1 and 10 in 2012
* $obj->disabled_dates(array('1,10 1 2012'));
*
* // disable 1 through 10, and then 20th, 22nd and 24th
* // of January through March for every year
* $obj->disabled_dates(array('1-10,20,22,24 1-3 *'));
*
* // disable all Saturdays and Sundays
* $obj->disabled_dates(array('* * * 0,6'));
*
* // disable 1st and 2nd of July 2012,
* // and all of August of 2012;
* $obj->disabled_dates(array('01 07 2012', '02 07 2012', '* 08 2012'));
* </code>
*
* @param array $disabled_dates An array of strings representing disabled dates. Values in the string have
* to be in the following format: "day month year weekday" where "weekday" is
* optional and can be 0-6 (Saturday to Sunday); The syntax is similar to
* cron's syntax: the values are separated by spaces and may contain * (asterisk)
* - (dash) and , (comma) delimiters.
*
* Default is FALSE, no disabled dates.
*
* @return void
*/
function disabled_dates($disabled_dates) {
// set the date picker's attribute
$this->set_attributes(array('disabled_dates' => $disabled_dates));
}
/**
* By default, Zebra_Form relies on {@link http://stefangabos.ro/jquery/zebra-datepicker/ Zebra_DatePicker} for
* {@link Zebra_Form_Date Date} controls. If you want to use a different date picker, you have to disable the
* built-in one by calling this method.
*
* <samp>Make sure the language used by the custom date picker is the same as the {@link language() language} of the
* library, or validation of the date will fail!
*
* Also, note that {@link format() format}, {@link direction() direction} and {@link disabled_dates() disabled dates}
* will still apply and will be taken into account when validating the date, but the other properties will be ignored
* as are specific to Zebra_DatePicker!</samp>
*
* @since 2.8.7
*
* @return void
*/
function disable_zebra_datepicker() {
$this->set_attributes(array('disable_zebra_datepicker' => true));
}
/**
* Enables selection of specific dates or range of dates in the calendar, after dates have been previously disabled
* via {@link disabled_dates()}.
*
* @param array $enabled_dates An array of enabled dates in the same format as required for as argument for
* the {@link disabled_dates()} method. To be used together with
* {@link disabled_dates()} by first setting "disabled_dates" to something like
* array('* * * *') (which will disable everything) and then setting "enabled_dates"
* to, say, array('* * * 0,6') to enable just weekends.
*
* Default is FALSE, all dates are enabled (unless, specificaly disabled via
* {@link disabled_dates()}).
*
* @since 2.9.3
*
* @return void
*/
function enabled_dates($enabled_dates) {
// set the date picker's attribute
$this->set_attributes(array('enabled_dates' => $enabled_dates));
}
/**
* Week's starting day.
*
* @param integer $day Valid values are 0 to 6, Sunday to Saturday.
*
* Default is 1, Monday.
*
* @return void
*/
function first_day_of_week($day)
{
// set the date picker's attribute
$this->set_attributes(array('first_day_of_week' => $day));
}
/**
* Sets the format of the returned date.
*
* @param string $format Format of the returned date.
*
* Accepts the following characters for date formatting: d, D, j, l, N, w, S, F, m, M,
* n, Y, y borrowing syntax from ({@link http://www.php.net/manual/en/function.date.php
* PHP's date function})
*
* Note that when setting a date format without days (‘d’, ‘j’), the users will be able
* to select only years and months, and when setting a format without months and days
* (‘F’, ‘m’, ‘M’, ‘n’, ‘t’, ‘d’, ‘j’), the users will be able to select only years.
*
* Also note that the value of the "view" property (see below) may be overridden if it
* is the case: a value of "days" for the "view" property makes no sense if the date
* format doesn’t allow the selection of days.
*
* Default format is <b>Y-m-d</b>
*
* @return void
*/
function format($format) {
// set the date picker's attribute
$this->set_attributes(array('format' => $format));
}
/**
* <b>To be used after the form is submitted!</b>
*
* Returns submitted date in the YYYY-MM-DD format so that it's directly usable with a database engine or with
* PHP's {@link http://php.net/manual/en/function.strtotime.php strtotime} function.
*
* @return string Returns submitted date in the YYYY-MM-DD format, or <b>an empty string</b> if control was
* submitted with no value (empty).
*/
function get_date()
{
$result = $this->get_attributes('date');
// if control had a value return it, or return an empty string otherwise
return (isset($result['date'])) ? $result['date'] : '';
}
/**
* Captions in the datepicker's header, for the 3 possible views: days, months, years.
*
* For each of the 3 views the following special characters may be used borrowing from PHP's "date" function's
* syntax: m, n, F, M, y and Y; any of these will be replaced at runtime with the appropriate date fragment, depending
* on the currently viewed date. two more special characters are also available Y1 and Y2 (upper case representing
* years with 4 digits, lowercase representing years with 2 digits) which represent "currently selected year - 7"
* and "currently selected year + 4" and which only make sense used in the "years" view.
*
* Even though any of these special characters may be used in any of the 3 views, you should use m, n, F, M for the
* "days" view and y, Y, Y1, Y2, y1, y2 for the "months" and "years" view or you may get unexpected results!
*
* Text and HTML can also be used, and will be rendered as it is, as in the example below (the library is smart
* enough to not replace special characters when used in words or HTML tags):
*
* <code>
* header_captions(array(
* 'days' => 'Departure:<br>F, Y',
* 'months' => 'Departure:<br>Y',
* 'years' => 'Departure:<br>Y1 - Y2'
* ));
* </code>
*
* Default is
*
* <code>
* header_captions(array(
* 'days' => 'F, Y',
* 'months' => 'Y',
* 'years' => 'Y1 - Y2'
* ));
* </code>
*
* @param $captions An associative array containing captions in the datepicker's header, for the 3 possible
* views: days, months, years.
*
* @return void
*/
function header_captions($captions)
{
// set the date picker's attribute
$this->set_attributes(array('header_captions' => $captions));
}
/**
* Sets the HTML to be used for the previous month/next month buttons.
*
* @param $navigation An array with 2 elements containing the HTML to be used for the previous month/next month
* buttons.
*
* Default is array('«','»')
*
* @return void
*/
function header_navigation($navigation)
{
// set the date picker's attribute
$this->set_attributes(array('header_navigation' => $navigation));
}
/**
* The position of the date picker's inside the element it is attached to.
*
* <code>
* $date = $form->add('date', 'my_date');
*
* // position the date picker's icon to the left
* $date->icon_position('left');
* </code>
*
* @param string $position The position of the date picker's inside the element it is attached to.
*
* Possible values are "left" and "right".
*
* Default is "right"
*
* @since 2.9.8
*
* @return void
*/
function icon_position($position)
{
// set the date picker's attribute
$this->set_attributes(array('icon_position' => $position));
}
/**
* Sets whether the icon for opening the datepicker should be inside or outside the element.
*
* @param boolean $value If set to FALSE, the icon will be placed to the right of the parent element, while
* if set to TRUE it will be placed to the right of the parent element, but *inside* the
* element itself.
*
* Default is TRUE.
*
* @return void
*/
function inside($value) {
// set the date picker's attribute
// ("inside" is a "reserved" attribute so we'll pick something else)
$this->set_attributes(array('inside_icon' => $value));
}
/**
* Sets the offset, in pixels (x, y), to shift the date picker’s position relative to the top-left of the icon that
* toggles the date picker.
*
* @param array $value An array indicating the offset, in pixels (x, y), to shift the date picker’s position
* relative to the top-left of the icon that toggles the date picker.
*
* Default is array(5, -5).
*
* @return void
*/
function offset($value) {
// set the date picker's attribute
$this->set_attributes(array('offset' => $value));
}
/**
* Sets whether the date picker should be shown *only* when clicking the icon.
*
* @param array $value An array indicating the offset, in pixels (x, y), to shift the date picker’s position
* relative to the top-left of the icon that toggles the date picker.
*
* Default is FALSE.
*
* @return void
*/
function open_icon_only($value) {
// set the date picker's attribute
$this->set_attributes(array('open_icon_only' => $value));
}
/**
* Pairs the date element with another date element from the page, so that the other date element will use the current
* date element’s value as starting date.
*
* <code>
* // let's assume this will be the starting date
* $date1 = $form->add('date', 'starting_date');
*
* // dates are selectable in the future, starting with today
* $date1->direction(true);
*
* // indicate another date element that will use this
* // element's value as starting date
* $date1->pair('ending_date');
*
* // the other date element
* $date2 = $form->add('date', 'ending_date');
*
* // start one day after the reference date
* // (that is, one day after whaterver is selected in the first element)
* $date2->direction(1);
* </code>
*
* @param string $value The ID of another "date" element which will use the current date element's value as
* starting date.
*
* Note that the rules set in the "direction" property will still apply, only that the
* reference date will not be the current system date but the value selected in the
* current date picker.
*
* Default is FALSE (not paired with another date picker)
*
* @return void
*/
function pair($value) {
// set the date picker's attribute
$this->set_attributes(array('pair' => '$(\'#' . $value . '\')'));
}
/**
* Sets whether the element the calendar is attached to should be read-only.
*
* @param boolean $value The setting's value
*
* If set to TRUE, a date can be set only through the date picker and cannot be enetered
* manually.
*
* Default is TRUE.
*
* @return void
*/
function readonly_element($value) {
// set the date picker's attribute
$this->set_attributes(array('readonly_element' => $value));
}
/**
* Should days from previous and/or next month be selectable when visible?
*
* @param string $value The setting's value
*
* Note that if set to TRUE, the value of {@link show_other_months()} will be considered
* TRUE regardless of the actual value!
*
* Default is TRUE.
*
* @since 2.9.3
*
* @return void
*/
function select_other_months($value) {
// set the date picker's attribute
$this->set_attributes(array('select_other_months' => $value));
}
/**
* Should the "Clear date" button be visible?
*
* @param string $value The setting's value
*
* Accepted values are:
*
* - 0 (zero) – the button for clearing a previously selected date is shown only if a
* previously selected date already exists; this means that if the input the date
* picker is attached to is empty, and the user selects a date for the first time,
* this button will not be visible; once the user picked a date and opens the date
* picker again, this time the button will be visible.
*
* - TRUE will make the button visible all the time
*
* - FALSE will disable the button
*
* Default is "0" (without quotes)
*
* @return void
*/
function show_clear_date($value = 0)
{
// set the date picker's attribute
$this->set_attributes(array('show_clear_date' => $value));
}
/**
* Should a calendar icon be added to the elements the plugin is attached to?
*
* <code>
* $date = $form->add('date', 'my_date');
*
* // do not show the icon
* $date->show_icon(false);
* </code>
*
* @param boolean $visible When set to TRUE the plugin will attach a calendar icon to the elements the plugin
* is attached to.
*
* Default is TRUE
*
* @since 2.9.8
*
* @return void
*/
function show_icon($visible)
{
// set the date picker's attribute
$this->set_attributes(array('show_icon' => $visible));
}
/**
* Should days from previous and/or next month be visible?
*
* @param string $value The setting's value
*
* Default is TRUE.
*
* @since 2.9.3
*
* @return void
*/
function show_other_months($value = true) {
// set the date picker's attribute
$this->set_attributes(array('show_other_months' => $value));
}
/**
* Should the "Today" button be visible?
*
* @param string $value The setting's value
*
* Setting this property to anything but a boolean FALSE will enable the button and
* will use the property's value as caption for the button; setting it to FALSE will
* disable the button.
*
* Default is "Today"
*
* @since 2.9.4
*
* @return void
*/
function show_select_today($value = 'Today')
{
// set the date picker's attribute
$this->set_attributes(array('show_select_today' => $value));
}
/**
* Sets whether an extra column should be shown, showing the number of each week.
*
* @param string $value Anything other than FALSE will enable this feature, and use the given value as column
* title. For example, show_week_number: ‘Wk’ would enable this feature and have "Wk" as
* the column’s title.
*
* Default is FALSE.
*
* @return void
*/
function show_week_number($value) {
// set the date picker's attribute
$this->set_attributes(array('show_week_number' => $value));
}
/**
* Sets a default date to start the date picker with.
*
* @param date $value A default date to start the date picker with,
*
* Must be specified in the format defined by the "format" property, or it will be
* ignored!
*
* Note that this value is used only if there is no value in the field the date picker
* is attached to!
*
* Default is FALSE.
*
* @return void
*/
function start_date($value) {
// set the date picker's attribute
$this->set_attributes(array('start_date' => $value));
}
/**
* Sets whether default values, in the input field the date picker is attached to, be deleted if they are not valid
* according to {@link direction() direction} and/or {@link disabled_dates() disabled_dates}.
*
* @param boolean $value If set to TRUE, default values, in the input field the date picker is attached to,
* will be deleted if they are not valid according to {@link direction() direction}
* and/or {@link disabled_dates() disabled_dates}.
*
* Default is FALSE.
*
* @return void
*/
function strict($value) {
// set the date picker's attribute
$this->set_attributes(array('strict' => $value));
}
/**
* Sets how should the date picker start.
*
* @param string $view How should the date picker start.
*
* Valid values are "days", "months" and "years".
*
* Note that the date picker is always cycling days-months-years when clicking in the
* date picker's header, and years-months-days when selecting dates (unless one or more
* of the views are missing due to the date's format)
*