PluginProbe
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses / 4.2.0
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses v4.2.0
4.4.7 4.4.6 4.4.5 4.4.4 4.4.3 4.4.2 4.4.1 4.4.0 4.3.9.1 4.3.9 4.3.8 4.3.7 4.1.6.9 4.1.6.9.1 4.1.6.9.2 4.1.6.9.3 4.1.6.9.4 4.1.7 4.1.7.1 4.1.7.2 4.1.7.3 4.1.7.3.1 4.1.7.3.2 4.2.0 4.2.1 All 138 releases
learnpress / inc / admin / views / tools / database / html-remove-database.php

html-remove-database.php in LearnPress – WordPress LMS Plugin for Create and Sell Online Courses 4.2.0, at inc/admin/views/tools/database/html-remove-database.php

28 lines 886 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * @author ThimPress
4 * @package LearnPress/Admin/Views
5 * @version 3.0.0
6 */
7
8 defined( 'ABSPATH' ) || die();
9 ?>
10
11 <div class="card">
12 <h2><?php _e( 'Remove current Data', 'learnpress' ); ?></h2>
13 <p><?php _e( 'Remove all courses, lessons, quizzes and questions.', 'learnpress' ); ?></p>
14 <form method="post" name="learn-press-form-remove-data">
15 <div class="">
16 <p><?php _e( 'Be careful before using this action!', 'learnpress' ); ?></p>
17 </div>
18 <label class="hide-if-js">
19 <input type="checkbox" name="action" value="learn-press-remove-data"/>
20 <?php _e( 'Check this box and click this button again to confirm.', 'learnpress' ); ?>
21 </label>
22 <p class="tools-button">
23 <button class="button button-fade"><?php esc_html_e( 'Remove', 'learnpress' ); ?></button>
24 </p>
25 <?php wp_nonce_field( 'learn-press-remove-data', 'remove-data-nonce' ); ?>
26 </form>
27 </div>
28