'.__('If you do not want to restore all your database tables, then choose some to exclude here.', 'updraftplus').'(...)
';
$select_table_button = '
'.__('Select All', 'updraftplus').' | '.__('Deselect All', 'updraftplus').'
';
$select_restore_tables .= $select_table_button;
if ($db_scan_timed_out || $php_max_input_vars_exceeded) {
if ($db_scan_timed_out) $all_other_table_title = __('The database scan was taking too long and consequently the list of all tables in the database could not be completed.', 'updraftplus').' '.__('This option will ensure all tables not found will be backed up.', 'updraftplus');
if ($php_max_input_vars_exceeded) $all_other_table_title = __('The amount of database tables scanned is near or over the php_max_input_vars value so some tables maybe truncated.', 'updraftplus').' '.__('This option will ensure all tables not found will be backed up.', 'updraftplus');
$select_restore_tables .= '
';
$select_restore_tables .= '
';
}
foreach ($tables_found as $table) {
$checked = $skip_composite_tables && UpdraftPlus_Database_Utility::table_has_composite_private_key($table) ? '' : 'checked="checked"';
$select_restore_tables .= '
';
$select_restore_tables .= '
';
}
$select_restore_tables .= $select_table_button;
$select_restore_tables .= '