PATH:
home
/
niazsaze
/
public_html
/
wp-content
/
plugins
/
wp-statistics
/
includes
/
admin
/
templates
/
optimization
<?php // Get the historical number of visitors to the site $historical_visitors = WP_STATISTICS\Historical::get('visitors'); // Get the historical number of visits to the site $historical_visits = WP_STATISTICS\Historical::get('visits'); ?> <script type="text/javascript"> jQuery(document).ready(function ($) { $('#historical-submit').click(function(e) { e.preventDefault(); $('#historical-submit').addClass('wps-loading-button'); $.ajax({ url: '<?php echo esc_url(admin_url('admin-ajax.php')); ?>', type: 'POST', data: { action: 'wp_statistics_handle_historical_setting_form', _wpnonce: '<?php echo esc_js(wp_create_nonce('wps_optimization')); ?>', visitors: $('#wps_historical_visitors').val(), visits: $('#wps_historical_visits').val() }, complete: function(res) { location.reload(); } }); }); }); </script> <div class="wrap wps-wrap"> <h2 class="wps-settings-box__title"> <span><?php esc_html_e('Historical Data', 'wp-statistics'); ?></span> <a href="<?php echo esc_url(WP_STATISTICS_SITE_URL . '/resources/optimization-historical-data/?utm_source=wp-statistics&utm_medium=link&utm_campaign=optimization') ?>" target="_blank"><?php esc_html_e('View Guide', 'wp-statistics'); ?></a> </h2> <form class="wps-wrap__setting-form" action="<?php echo esc_url(admin_url('admin.php?page=wps_optimization_page&tab=historical')) ?>" id="wps_historical_form" method="post"> <div class="postbox"> <?php wp_nonce_field('wps_optimization_nonce'); ?> <table class="form-table"> <tbody> <tr class="wps-settings-box_head"> <th scope="row" colspan="2"><h3><?php esc_html_e('Historical Data Entry', 'wp-statistics'); ?></h3></th> </tr> <tr id="wps_historical_purge" style="display: none"> <th scope="row" colspan=2> <?php esc_html_e('Reminder: After database purging, please reload this page to update these figures correctly.', 'wp-statistics'); ?> </th> </tr> <tr data-id="historical_total_visitors_tr"> <th scope="row"> <label for="wps_historical_visitors"><?php esc_html_e('Historical Total Visitors', 'wp-statistics'); ?></label> </th> <td> <input type="number" min="0" size="10" value="<?php echo esc_attr($historical_visitors); ?>" id="wps_historical_visitors" name="wps_historical_visitors"> <p class="description"><?php echo sprintf(__('Enter the accumulated count of unique visitors to your site from its inception up to now. For example, if you\'ve transitioned from another tracking tool and it reported 5,000 unique visitors up to the point of switching, input that figure here. This ensures your statistics reflect the entire history of your website\'s traffic. Currently set to %s.', 'wp-statistics'), esc_html(number_format_i18n($historical_visitors))); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></p> </td> </tr> <tr data-id="historical_total_site_views_tr"> <th scope="row"> <label for="wps_historical_visits"><?php esc_html_e('Historical Total Site Views', 'wp-statistics'); ?></label> </th> <td> <input type="number" min="0" size="10" value="<?php echo esc_attr($historical_visits); ?>" id="wps_historical_visits" name="wps_historical_visits"> <p class="description"><?php echo sprintf(__('Enter the total number of site visits (including repeat visits) from its start until now. If your previous tool indicated 20,000 total site visits before moving to WP Statistics, input that number. This allows for a seamless integration of past site visit data. Currently set to %s.', 'wp-statistics'), esc_html(number_format_i18n($historical_visits))); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></p> </td> </tr> <tr> <td colspan=2> <input type="hidden" name="submit" value="1"/> </td> </tr> </tbody> </table> </div> <button id="historical-submit" class="wps-button wps-button--primary" type="submit" value="1" name="historical-submit"><?php esc_html_e('Save Changes', 'wp-statistics'); ?></button> </form> </div>
[-] updates.php
[edit]
[-] purging.php
[edit]
[-] export.php
[edit]
[-] historical.php
[edit]
[-] resources.php
[edit]
[+]
..