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
event-sidebar-options.php
12 lines
| 1 | <?php |
| 2 | /** |
| 3 | * UI for option to hide from upcoming events list |
| 4 | */ |
| 5 | |
| 6 | // Don't load directly |
| 7 | if ( !defined('ABSPATH') ) { die('-1'); } |
| 8 | |
| 9 | ?> |
| 10 | <?php global $post; ?> |
| 11 | <label class="selectit"><input value="yes" type="checkbox" <?php checked(tribe_get_event_meta($post->ID, '_EventHideFromUpcoming') == "yes") ?> name="EventHideFromUpcoming"> <?php _e("Hide From Event Listings", 'tribe-events-calendar'); ?></label><br /><br /> |
| 12 | <label class="selectit"><input value="yes" type="checkbox" <?php checked($post->menu_order == "-1") ?> name="EventShowInCalendar"> <?php _e("Sticky in Calendar View", 'tribe-events-calendar'); ?></label> |