add_new_instructor.php
7 years ago
addons.php
7 years ago
answer.php
7 years ago
enable_disable_addons.php
7 years ago
get-pro.php
7 years ago
instructors.php
7 years ago
question_answer.php
7 years ago
quiz_attempts.php
7 years ago
status.php
7 years ago
students.php
7 years ago
tutor-pro-addons.php
7 years ago
uninstall.php
7 years ago
view_attempt.php
7 years ago
withdraw_requests.php
7 years ago
uninstall.php
19 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @package @TUTOR |
| 4 | * @since v.1.0.0 |
| 5 | */ |
| 6 | ?> |
| 7 | |
| 8 | <div class="wrap tutor-uninstall-wrap"> |
| 9 | <h2><?php _e('Uninstall Tutor', 'tutor'); ?></h2> |
| 10 | <p class="desc"><?php _e('Just deactive tutor plugin or completely uninstall and erase all of data saved before by tutor.', 'tutor'); ?></p> |
| 11 | |
| 12 | <div class="tutor-uninstall-btn-group"> |
| 13 | <?php $plugin_file = tutor()->basename; ?> |
| 14 | |
| 15 | <a href="<?php echo wp_nonce_url( 'plugins.php?action=deactivate&plugin=' . urlencode( $plugin_file ) . '&plugin_status=all&paged=1&s=', 'deactivate-plugin_' . $plugin_file ); ?>" class="tutor-button button-warning"> Deactive </a> |
| 16 | |
| 17 | <a href="admin.php?action=uninstall_tutor_and_erase" class="tutor-button button-danger"> Completely Uninstall and erase all data </a> |
| 18 | </div> |
| 19 | </div> |