Line:~1193 <div class="tables-list extra-tables" id="extra-tables-list"> <?php if (count($other_tables) > 0) { ?> <h4><?php _e('You may choose to include any of the following tables:','wp-db-backup'); ?></h4> <select name="other_tables[]" size="10" multiple="multiple" style="height:160px;"> <?php foreach ($other_tables as $table) { ?> <option value="<?php echo $table; ?>"><?php echo $table; ?></option> <?php } ?></select><?php } ?></div> Line:~1291 if (count($other_tables) > 0) { echo '<div class="tables-list alternate" id="include-tables-list">'; echo '<h4>' . __('Tables to include in the scheduled backup:','wp-db-backup') . '</h4>'; echo '<select name="wp_cron_backup_tables[]" size="10" multiple="multiple" style="height:160px;">'; foreach ($other_tables as $table) { echo '<option'; if (in_array($table, $cron_tables)) { echo ' selected="selected"'; } echo " value='{$table}'>{$table}</option>"; } echo '</select>'; } Thanks..
<div class="tables-list extra-tables" id="extra-tables-list"> <?php if (count($other_tables) > 0) { ?> <h4><?php _e('You may choose to include any of the following tables:','wp-db-backup'); ?></h4> <select name="other_tables[]" size="10" multiple="multiple" style="height:160px;"> <?php foreach ($other_tables as $table) { ?> <option value="<?php echo $table; ?>"><?php echo $table; ?></option> <?php } ?></select><?php } ?></div>
if (count($other_tables) > 0) { echo '<div class="tables-list alternate" id="include-tables-list">'; echo '<h4>' . __('Tables to include in the scheduled backup:','wp-db-backup') . '</h4>'; echo '<select name="wp_cron_backup_tables[]" size="10" multiple="multiple" style="height:160px;">'; foreach ($other_tables as $table) { echo '<option'; if (in_array($table, $cron_tables)) { echo ' selected="selected"'; } echo " value='{$table}'>{$table}</option>"; } echo '</select>'; }
RSS feed for this topic
You must log in to post.
Register or log in - lost password?
Line:~1193
<div class="tables-list extra-tables" id="extra-tables-list"><?php
if (count($other_tables) > 0) {
?>
<h4><?php _e('You may choose to include any of the following tables:','wp-db-backup'); ?></h4>
<select name="other_tables[]" size="10" multiple="multiple" style="height:160px;">
<?php
foreach ($other_tables as $table) {
?>
<option value="<?php echo $table; ?>"><?php echo $table; ?></option>
<?php
}
?></select><?php
}
?></div>
Line:~1291
if (count($other_tables) > 0) {
echo '<div class="tables-list alternate" id="include-tables-list">';
echo '<h4>' . __('Tables to include in the scheduled backup:','wp-db-backup') . '</h4>';
echo '<select name="wp_cron_backup_tables[]" size="10" multiple="multiple" style="height:160px;">';
foreach ($other_tables as $table) {
echo '<option';
if (in_array($table, $cron_tables)) {
echo ' selected="selected"';
}
echo " value='{$table}'>{$table}</option>";
}
echo '</select>';
}
Thanks..
RSS feed for this topic
Reply
You must log in to post.