days.php
34 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | return array( |
| 5 | array( |
| 6 | 'value' => 'Sun', |
| 7 | 'label' => __( 'Sunday', 'jet-form-builder' ), |
| 8 | ), |
| 9 | array( |
| 10 | 'value' => 'Mon', |
| 11 | 'label' => __( 'Monday', 'jet-form-builder' ), |
| 12 | ), |
| 13 | array( |
| 14 | 'value' => 'Tue', |
| 15 | 'label' => __( 'Tuesday', 'jet-form-builder' ), |
| 16 | ), |
| 17 | array( |
| 18 | 'value' => 'Wed', |
| 19 | 'label' => __( 'Wednesday', 'jet-form-builder' ), |
| 20 | ), |
| 21 | array( |
| 22 | 'value' => 'Thu', |
| 23 | 'label' => __( 'Thursday', 'jet-form-builder' ), |
| 24 | ), |
| 25 | array( |
| 26 | 'value' => 'Fri', |
| 27 | 'label' => __( 'Friday', 'jet-form-builder' ), |
| 28 | ), |
| 29 | array( |
| 30 | 'value' => 'Sat', |
| 31 | 'label' => __( 'Saturday', 'jet-form-builder' ), |
| 32 | ), |
| 33 | ); |
| 34 |