bulk-add.php
6 years ago
clone-form.php
3 years ago
delete-confirmation-modal.php
6 years ago
empty-trash-modal.php
6 years ago
link-form.php
2 days ago
new-child.php
2 days ago
quickedit-link.php
6 years ago
quickedit-post.php
2 days ago
empty-trash-modal.php
14 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Modal for confirming trash empty |
| 4 | */ |
| 5 | ?> |
| 6 | <div class="nestedpages-modal-backdrop" data-nestedpages-modal="np-trash-modal"></div> |
| 7 | <div class="nestedpages-modal-content small short <?php if ( $this->integrations->plugins->dark_mode->installed ) echo 'np-dark-mode'; ?>" id="np-trash-modal" data-nestedpages-modal="np-trash-modal"> |
| 8 | <div class="modal-body np-trash-modal"> |
| 9 | <p><?php _e('Are you sure you would like to empty the trash? This action is not reversable.', 'wp-nested-pages'); ?></p> |
| 10 | <a href="#" class="np-cancel-trash button modal-close" data-nestedpages-modal-close><?php _e('Cancel', 'wp-nested-pages'); ?></a> |
| 11 | <a href="#" class="np-trash-confirm button-primary"><?php _e('Empty Trash', 'wp-nested-pages'); ?></a> |
| 12 | <input type="hidden" id="np-trash-posttype" value="<?php echo esc_attr($this->post_type->name); ?>"> |
| 13 | </div> |
| 14 | </div><!-- /.modal --> |