<div class="wrap wps-wrap">
<h2 class="wps-settings-box__title">
<span><?php esc_html_e('Data Export', 'wp-statistics'); ?></span>
<a href="<?php echo esc_url(WP_STATISTICS_SITE_URL . '/resources/optimization-data-export/?utm_source=wp-statistics&utm_medium=link&utm_campaign=optimization') ?>" target="_blank"><?php esc_html_e('View Guide', 'wp-statistics'); ?></a>
</h2>
<div class="postbox">
<form method="post" class="wps-wrap__setting-form">
<input type="hidden" name="wps_export" value="true">
<?php wp_nonce_field('wp_statistics_export_nonce', 'wps_export_file'); ?>
<table class="form-table">
<tbody>
<tr class="wps-settings-box_head">
<th scope="row" colspan="2"><h3><?php esc_html_e('Export', 'wp-statistics'); ?></h3></th>
</tr>
<tr data-id="select_data_source_tr">
<th scope="row">
<label for="table-to-export"><?php esc_html_e('Select Data Source', 'wp-statistics'); ?></label>
</th>
<td>
<select dir="<?php echo esc_attr((is_rtl() ? 'rtl' : 'ltr')); ?>" id="table-to-export" name="table-to-export" required>
<option value=""><?php esc_html_e('Please select', 'wp-statistics'); ?></option>
<?php
foreach (WP_STATISTICS\DB::table() as $tbl_key => $tbl_name) {
echo '<option value="' . esc_attr($tbl_key) . '">' . esc_attr($tbl_name) . '</option>'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}
?>
</select>
<p class="description"><?php esc_html_e('Choose a specific table or dataset for export.', 'wp-statistics'); ?></p>
</td>
</tr>
<tr data-id="choose_export_format_tr">
<th scope="row">
<label for="export-file-type"><?php esc_html_e('Choose Export Format', 'wp-statistics'); ?></label>
</th>
<td>
<select dir="ltr" id="export-file-type" name="export-file-type" required>
<option value=""><?php esc_html_e('Please select', 'wp-statistics'); ?></option>
<option value="xml">XML</option>
<option value="csv">CSV</option>
<option value="tsv">TSV</option>
</select>
<p class="description"><?php esc_html_e('Select a file format for the exported data.', 'wp-statistics'); ?></p>
</td>
</tr>
<tr data-id="add_header_row_tr">
<th scope="row">
<span class="wps-setting-label"><?php esc_html_e('Add Header Row', 'wp-statistics'); ?></span>
</th>
<td>
<input id="export-headers" type="checkbox" value="1" name="export-headers">
<label for="export-headers"><?php esc_html_e('Include column names in the first row', 'wp-statistics'); ?></label>
<p class="description"><?php esc_html_e('Include column names at the top of the exported file.', 'wp-statistics'); ?></p>
<div class="wps-alert wps-alert__info">
<div class="wps-g-0">
<b><?php esc_html_e('Privacy Notice for Data Export', 'wp-statistics') ?></b>
<p><?php _e('Exported data may contain personal information. Review our <a href="https://wp-statistics.com/resources/handling-of-personal-data-during-export-procedures/?utm_source=wp-statistics&utm_medium=link&utm_campaign=settings" target="_blank">Handling of Personal Data During Export Procedures</a> before exporting to ensure compliance with privacy laws.', 'wp-statistics') // phpcs:ignore WordPress.Security.EscapeOutput.UnsafePrintingFunction ?></p>
</div>
</div>
</td>
</tr>
<tr>
<th colspan="2">
<span class="screen-reader-text">Export action</span>
<?php
$button_text = esc_html__('Begin Export', 'wp-statistics');
$button_classes = 'wps-button wps-button--primary';
$button_name = 'export-file-submit';
?>
<input type="submit" name="<?php echo esc_attr($button_name); ?>" id="<?php echo esc_attr($button_name); ?>" class="<?php echo esc_attr($button_classes); ?>" value="<?php echo esc_attr($button_text); ?>">
</th>
</tr>
</tbody>
</table>
</form>
</div>
</div>