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
delete-confirmation-modal.php
13 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Modal for confirming link delete |
| 4 | */ |
| 5 | ?> |
| 6 | <div class="nestedpages-modal-backdrop" data-nestedpages-modal="np-delete-confirmation-modal"></div> |
| 7 | <div class="nestedpages-modal-content short small <?php if ( $this->integrations->plugins->dark_mode->installed ) echo 'np-dark-mode'; ?>" id="np-trash-modal" data-nestedpages-modal="np-delete-confirmation-modal"> |
| 8 | <div class="modal-body np-trash-modal"> |
| 9 | <p data-np-link-delete-text></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="button-primary" data-delete-confirmation><?php _e('Delete', 'wp-nested-pages'); ?></a> |
| 12 | </div> |
| 13 | </div><!-- /.modal --> |