PluginProbe
Database Reset / 3.21
Database Reset v3.21
2.3.2 3.0 3.0.1 3.0.2 3.1 3.15 3.16 3.17 3.18 3.19 3.20 3.21 3.22 3.23 3.24 3.25 trunk 1.0 1.2 1.2.1 1.2.2 1.3 1.4 2.0 2.1 All 27 releases
wordpress-database-reset / views / partials / select-tables.php

select-tables.php in Database Reset 3.21, at views/partials/select-tables.php

28 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <p>
2 <b>1.</b> The plugin DOES NOT create backups. Please create a backup manually or install the <a class="open-wpr-upsell" href="#">free WP Reset plugin</a> which has snapshots that wlll enable you to undo a reset. If something is not clear open a ticket on the official <a target="_blank" href="https://wordpress.org/support/plugin/wordpress-database-reset/">support forum</a>. All tickets are answered within a few hours.
3 </p>
4
5 <p><b>2.</b> <?php _e( 'Select the database table(s) you would like to reset', 'wordpress-database-reset' ) ?>:</p>
6
7 <div id="select-container">
8 <a href='#' id="select-all"><?php _e( 'Select All Tables', 'wordpress-database-reset' ) ?></a>
9 <select id="wp-tables" multiple="multiple" name="db-reset-tables[]">
10 <?php foreach ( $this->wp_tables as $key => $value ) : ?>
11 <option value="<?php echo $key ?>"><?php echo $key ?></option>
12 <?php endforeach ?>
13 </select>
14 </div>
15
16 <p id="reactivate" style="display: none;">&bull;
17 <label for="db-reset-reactivate-theme-data">
18 <input type="checkbox" name="db-reset-reactivate-theme-data" id="db-reset-reactivate-theme-data" checked="checked" value="true" />
19 <em><?php _e( 'You selected the options table. Reactivate current theme and plugins after reset?', 'wordpress-database-reset' ) ?></em>
20 </label>
21 </p>
22
23 <p id="disclaimer" style="display: none;">&bull;
24 <em><?php printf( __( 'You selected the users table. Only the <strong><u>%s</u></strong> user will be restored', 'wordpress-database-reset' ), $this->user->user_login ) ?>.</em>
25 </p>
26
27 <hr>
28