tools
4 years ago
add_new_instructor.php
4 years ago
addons.php
4 years ago
announcements.php
4 years ago
answer.php
4 years ago
course-list.php
4 years ago
enable_disable_addons.php
4 years ago
get-pro.php
5 years ago
instructors.php
4 years ago
question_answer.php
4 years ago
quiz_attempts.php
4 years ago
students.php
4 years ago
tools.php
4 years ago
tutor-pro-addons.php
4 years ago
uninstall.php
4 years ago
view_attempt.php
4 years ago
welcome.php
4 years ago
withdraw_requests.php
4 years ago
uninstall.php
17 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 deactivate 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 | <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-btn tutor-btn-outline-primary"><?php _e("Deactivate", "tutor"); ?></a> |
| 15 | <a href="admin.php?action=uninstall_tutor_and_erase" class="tutor-btn tutor-btn-outline-primary"><?php _e('Completely Uninstall and erase all data', 'tutor'); ?></a> |
| 16 | </div> |
| 17 | </div> |