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
recurrence-dialog.php
27 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Recurrence dialogue box |
| 4 | */ |
| 5 | |
| 6 | // Don't load directly |
| 7 | if ( !defined('ABSPATH') ) { die('-1'); } |
| 8 | if ( empty( $recStart ) ) { |
| 9 | $recStart = isset( $_REQUEST['eventDate'] ) ? $_REQUEST['eventDate'] : null; |
| 10 | } |
| 11 | ?> |
| 12 | <div id="recurring-dialog" title="Saving Recurring Event" style="display: none;"> |
| 13 | <p><?php _e('Would you like to change only this instance of the event, or all future events in this series?','tribe-events-calendar'); ?></p> |
| 14 | <ul> |
| 15 | <li><strong><?php _e('Only This Event:','tribe-events-calendar'); ?></strong> <em><?php _e('All other future events in the series will remain the same.','tribe-events-calendar'); ?></em></li><br/> |
| 16 | <li><strong><?php _e('All Events:','tribe-events-calendar'); ?></strong> <em><?php _e('All future events in the series will be changed. Any changes made to other events will be kept.','tribe-events-calendar'); ?></em></li> |
| 17 | </ul> |
| 18 | </div> |
| 19 | |
| 20 | <div id="deletion-dialog" title="Delete Recurring Event" style="display: none;" data-start="<?php echo (isset($recStart)) ? $recStart : '' ?>" data-post="<?php echo (isset($recPost)) ? $recPost : '' ?>"> |
| 21 | <p><?php _e('Would you like to delete only this instance of the event, or all future events in this series?','tribe-events-calendar'); ?></p> |
| 22 | <ul> |
| 23 | <li><strong><?php _e('Only This Event:','tribe-events-calendar'); ?></strong> <em><?php _e('All other future events in the series will not be deleted.','tribe-events-calendar'); ?></em></li><br/> |
| 24 | <li><strong><?php _e('All Events:','tribe-events-calendar'); ?></strong> <em><?php _e('All future events in the series will be deleted.','tribe-events-calendar'); ?></em></li> |
| 25 | </ul> |
| 26 | </div> |
| 27 |