bulk-confirm-popup.php
2 months ago
common-confirm-popup.php
2 months ago
create-course-empty-state.php
1 year ago
filters.php
2 months ago
list-empty-state.php
11 months ago
list-filters.php
2 months ago
list-navbar.php
2 months ago
navbar.php
2 months ago
pagination.php
3 years ago
purchase-history-filter.php
1 year ago
search-filter.php
3 years ago
trashed-course-empty-state.php
1 year ago
bulk-confirm-popup.php
45 lines
| 1 | |
| 2 | <?php |
| 3 | /** |
| 4 | * Common bulk confirmation modal |
| 5 | * |
| 6 | * @package Tutor\Views |
| 7 | * @subpackage Tutor\ViewElements |
| 8 | * @author Themeum <support@themeum.com> |
| 9 | * @link https://themeum.com |
| 10 | * @since 2.0.0 |
| 11 | */ |
| 12 | |
| 13 | ?> |
| 14 | <div class="tutor-modal tutor-bulk-modal-disabled" id="tutor-bulk-confirm-popup" role="dialog" aria-modal="true" aria-labelledby="tutor-bulk-confirm-title" aria-hidden="true"> |
| 15 | <div class="tutor-modal-overlay"></div> |
| 16 | <div class="tutor-modal-window"> |
| 17 | <div class="tutor-modal-content tutor-modal-content-white"> |
| 18 | <button type="button" class="tutor-iconic-btn tutor-modal-close-o" data-tutor-modal-close aria-label="<?php esc_attr_e( 'Close', 'tutor' ); ?>"> |
| 19 | <span class="tutor-icon-times" aria-hidden="true"></span> |
| 20 | </button> |
| 21 | |
| 22 | <div class="tutor-modal-body tutor-text-center"> |
| 23 | <div class="tutor-my-44"> |
| 24 | <div id="tutor-bulk-confirm-title" class="tutor-fs-4 tutor-fw-medium tutor-color-black tutor-mb-12"><?php esc_html_e( 'Before You Proceed!', 'tutor' ); ?></div> |
| 25 | <div class="tutor-fs-6 tutor-color-muted"><?php esc_html_e( 'Are you sure you would like to perform this action? We suggest you proceed with caution.', 'tutor' ); ?></div> |
| 26 | |
| 27 | <form id="tutor-common-confirmation-form-2" class="tutor-mt-40 tutor-mb-0" method="POST"> |
| 28 | <?php tutor_nonce_field(); ?> |
| 29 | <input type="hidden" name="id"> |
| 30 | <input type="hidden" name="action"> |
| 31 | <div class="tutor-d-flex tutor-justify-center"> |
| 32 | <button class="tutor-btn tutor-btn-outline-primary" data-tutor-modal-close> |
| 33 | <?php esc_html_e( 'Cancel', 'tutor' ); ?> |
| 34 | </button> |
| 35 | <button id="tutor-confirm-bulk-action" class="tutor-btn tutor-btn-primary tutor-ml-16" data-tutor-modal-submit> |
| 36 | <?php esc_html_e( "Yes, I’m sure", 'tutor' ); ?> |
| 37 | </button> |
| 38 | </div> |
| 39 | </form> |
| 40 | </div> |
| 41 | </div> |
| 42 | </div> |
| 43 | </div> |
| 44 | </div> |
| 45 |