PluginProbe
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses / 4.1.7
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses v4.1.7
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-outdated-data.php

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

29 lines 994 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 outdated Data', 'learnpress' ); ?></h2>
13 <p><?php _e( 'Remove all courses, lessons, quizzes and questions from version older than 1.0.', '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! Only use this action in case all outdated data has been upgraded.', 'learnpress' ); ?></p>
17 </div>
18 <label class="hide-if-js">
19 <input type="checkbox" name="action" value="learn-press-remove-old-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-old-data', 'remove-old-data-nonce' ); ?>
26
27 </form>
28 </div>
29