| 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 esc_html_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 esc_html_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 esc_attr($key); ?>"><?php echo esc_attr($key); ?></option> |
| 12 |
<?php endforeach ?> |
| 13 |
</select> |
| 14 |
</div> |
| 15 |
|
| 16 |
<p id="reactivate" style="display: none;">• |
| 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 esc_html_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;">• |
| 24 |
<em><?php printf( __( 'You selected the users table. Only the <strong><u>%s</u></strong> user will be restored', 'wordpress-database-reset' ), esc_attr($this->user->user_login) ) ?>.</em> |
| 25 |
</p> |
| 26 |
|
| 27 |
<hr> |
| 28 |
|