| 1 |
<p>1. <?php _e( 'Select the database tables you would like to reset', 'wordpress-database-reset' ) ?>:</p> |
| 2 |
|
| 3 |
<div id="select-container"> |
| 4 |
<a href='#' id="select-all"><?php _e( 'Select All', 'wordpress-database-reset' ) ?></a> |
| 5 |
<select id="wp-tables" multiple="multiple" name="db-reset-tables[]"> |
| 6 |
<?php foreach ( $this->wp_tables as $key => $value ) : ?> |
| 7 |
<option value="<?php echo $key ?>"><?php echo $key ?></option> |
| 8 |
<?php endforeach ?> |
| 9 |
</select> |
| 10 |
</div> |
| 11 |
|
| 12 |
<p id="reactivate" style="display: none"> |
| 13 |
<label for="db-reset-reactivate-theme-data"> |
| 14 |
<input type="checkbox" name="db-reset-reactivate-theme-data" id="db-reset-reactivate-theme-data" checked="checked" value="true" /> |
| 15 |
<?php _e( 'Reactivate current theme and plugins after reset?', 'wordpress-database-reset' ) ?> |
| 16 |
</label> |
| 17 |
</p> |
| 18 |
|
| 19 |
<?php include( 'disclaimer.php' ) ?> |
| 20 |
|
| 21 |
<hr> |
| 22 |
|