bulk-add.php
11 years ago
empty-trash-modal.php
11 years ago
link-form.php
11 years ago
new-child.php
11 years ago
quickedit-link.php
11 years ago
quickedit-post.php
11 years ago
empty-trash-modal.php
17 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Modal for confirming trash empty |
| 4 | */ |
| 5 | ?> |
| 6 | <div class="np-modal fade np-trash-modal" id="np-trash-modal"> |
| 7 | <div class="modal-dialog"> |
| 8 | <div class="modal-content"> |
| 9 | <div class="modal-body"> |
| 10 | <p>Are you sure you would like to empty the trash? This action is not reversable.</p> |
| 11 | <a href="#" class="np-cancel-trash button modal-close" data-dismiss="modal"><?php _e('Cancel', 'nestedpages'); ?></a> |
| 12 | <a href="#" class="np-trash-confirm button-primary"><?php _e('Empty Trash', 'nestedpages'); ?></a> |
| 13 | <input type="hidden" id="np-trash-posttype" value="<?php echo $this->post_type->name; ?>"> |
| 14 | </div> |
| 15 | </div><!-- /.modal-content --> |
| 16 | </div><!-- /.modal-dialog --> |
| 17 | </div><!-- /.modal --> |