tickets
12 years ago
app-shop.php
12 years ago
datepicker.php
12 years ago
event-map.php
12 years ago
event-sidebar-options.php
12 years ago
events-audit-trail.php
12 years ago
events-meta-box.php
12 years ago
no-comments.php
12 years ago
organizer-meta-box.php
12 years ago
recurrence-dialog.php
12 years ago
tribe-options-display.php
12 years ago
tribe-options-general.php
12 years ago
tribe-options-help.php
12 years ago
tribe-options-network.php
12 years ago
venue-meta-box.php
12 years ago
widget-admin-list.php
12 years ago
datepicker.php
21 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Date picker form |
| 4 | */ |
| 5 | |
| 6 | // Don't load directly |
| 7 | if ( !defined('ABSPATH') ) { die('-1'); } |
| 8 | |
| 9 | ?> |
| 10 | <form action="<?php echo tribe_get_dropdown_link_prefix(); ?>" method="get" id="<?php echo $prefix; ?>events-picker"> |
| 11 | <label for="<?php echo $prefix; ?>events-month">Events In</label> |
| 12 | <select id='<?php echo $prefix; ?>events-month' name='EventJumpToMonth' class='<?php echo $prefix; ?>events-dropdown tribe-no-param'> |
| 13 | <?php echo $monthOptions; ?> |
| 14 | </select> |
| 15 | <label for="<?php echo $prefix; ?>events-year" style="display: none;">Events Year</label> |
| 16 | <select id='<?php echo $prefix; ?>events-year' name='EventJumpToYear' class='<?php echo $prefix; ?>events-dropdown tribe-no-param'> |
| 17 | <?php echo $yearOptions; ?> |
| 18 | </select> |
| 19 | <noscript><input type="submit" value="→"></noscript> |
| 20 | </form> |
| 21 |