| Server IP : 38.190.208.107 / Your IP : 216.73.217.46 Web Server : nginx/1.28.1 System : Linux ht2026040333114 6.1.0-10-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.37-1 (2023-07-03) x86_64 User : root ( 0) PHP Version : 8.2.28 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv,eval,assert,passthru,system,exec,shell_exec,popen,proc_open MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/wp.3/wp-content/plugins/wp-statistics/includes/admin/templates/optimization/ |
Upload File : |
<?php if (!defined('ABSPATH')) exit; // Exit if accessed directly ?>
<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>