PATH:
home
/
niazsaze
/
public_html
/
wp-content
/
plugins
/
wp-statistics
/
includes
/
admin
/
templates
/
optimization
<?php use WP_Statistics\Service\Database\Managers\SchemaMaintainer; use WP_Statistics\Service\Database\Migrations\BackgroundProcess\BackgroundProcessFactory; $schemaCheckResult = SchemaMaintainer::check(); $databaseStatus = $schemaCheckResult['status'] ?? null; ?> <div class="wrap wps-wrap wps-wrap__setting-form js-updatesForm"> <h2 class="wps-settings-box__title"> <span><?php esc_html_e('Plugin Maintenance', 'wp-statistics'); ?></span> <a href="<?php echo esc_url(WP_STATISTICS_SITE_URL . '/resources/optimization-plugin-maintenance/?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"> <table class="form-table"> <tbody> <tr class="wps-settings-box_head"> <th scope="row" colspan="2"> <h3><?php esc_html_e('GeoLocation Settings', 'wp-statistics'); ?></h3> </th> </tr> <tr data-id="update_country_data_tr"> <th scope="row"> <span class="wps-setting-label"><?php esc_html_e('Update Country Data', 'wp-statistics'); ?></span> </th> <td> <button id="populate-submit-button" class="wps-button wps-button--danger-outline wps-mt-0" type="button" value="1" name="populate-submit"><?php esc_html_e('Refresh Country Data', 'wp-statistics'); ?></button> <p class="description"><?php esc_html_e('This action updates and corrects any unidentified or missing country data in the database. Please be patient, as the process might take some time, depending on the amount of data.', 'wp-statistics'); ?></p> <div id="populate-submit-result" class="wps-mt-12"></div> </td> </tr> </tbody> </table> </div> </div> <div class="wrap wps-wrap wps-wrap__setting-form"> <div class="postbox"> <table class="form-table"> <tbody> <tr class="wps-settings-box_head"> <th scope="row" colspan="2"> <h3><?php esc_html_e('Referrals Settings', 'wp-statistics'); ?></h3> </th> </tr> <tr data-id="update_source_channel_data_tr"> <th scope="row"> <label for="populate-source-channel-submit"><?php esc_html_e('Update Source Channel Data', 'wp-statistics'); ?></label> </th> <td> <button id="populate-source-channel-submit" class="wps-button wps-button--danger-outline wps-mt-0" type="button" value="1" name="populate-source-channel-submit"><?php esc_html_e('Update Source Channel', 'wp-statistics'); ?></button> <p class="description"><?php _e('This action updates and corrects any unidentified source channels in the database. Please be patient, as this process might take some time depending on the amount of data. <br> <i>Note: The accuracy of the results may be affected as we only retain whitelisted query parameters.</i>', 'wp-statistics'); ?></p> <div id="populate-source-channel-result" class="wps-mt-12"></div> </td> </tr> </tbody> </table> </div> </div> <div class="wrap wps-wrap wps-wrap__setting-form"> <div class="postbox"> <table class="form-table"> <tbody> <tr class="wps-settings-box_head"> <th scope="row" colspan="2"> <h3><?php esc_html_e('IP Address Management', 'wp-statistics'); ?></h3> </th> </tr> <tr data-id="convert_ip_addresses_to_hash_tr"> <th scope="row"> <label for="hash-ips-submit"><?php esc_html_e('Convert IP Addresses to Hash', 'wp-statistics'); ?></label> </th> <td> <button id="hash-ips-submit" class="wps-button wps-button--danger-outline wps-mt-0" type="button" value="1" name="hash-ips-submit"><?php esc_html_e('Initiate Conversion', 'wp-statistics'); ?></button> <p class="description"><?php esc_html_e('This function will transform all stored IP addresses into hashed values. Please note that after hashing, original IP addresses cannot be retrieved. The hashing process ensures user privacy while still allowing the system to generate accurate location-based insights. This operation might be time-consuming, so we recommend performing it during off-peak hours.', 'wp-statistics'); ?></p> <div id="hash-ips-result" class="wps-mt-12"></div> </td> </tr> </tbody> </table> </div> </div> <div class="wrap wps-wrap wps-wrap__setting-form"> <div class="postbox"> <table class="form-table"> <tbody> <tr class="wps-settings-box_head"> <th scope="row" colspan="2"><h3><?php esc_html_e('Database Schema', 'wp-statistics'); ?></h3></th> </tr> <tr data-id="wps_database_schema_form"> <th scope="row"> <span class="wps-setting-label"><?php esc_html_e('Check & Repair Database Schema', 'wp-statistics'); ?></span> </th> <td> <?php if ($databaseStatus === 'success'): ?> <button id="re-check-schema-submit-button" class="button wps-button wps-button--primary wps-mt-0" type="button" name="database-schema-re-check-submit"><?php esc_html_e('Re-check Schema', 'wp-statistics'); ?></button> <p class="description"><?php esc_html_e('Database schema is healthy. Click to run the schema check again.', 'wp-statistics'); ?></p> <div id="re-check-schema-result" class="wps-mt-12"></div> <?php else: ?> <button id="repair-schema-submit-button" class="wps-button wps-button--danger-outline wps-mt-0" type="button" name="database-schema-issues-submit"><?php esc_html_e('Repair Schema Issues', 'wp-statistics'); ?></button> <p class="description"><?php esc_html_e('Checks the integrity of the WP Statistics database tables and automatically applies any required fixes to keep your analytics accurate.', 'wp-statistics'); ?></p> <div id="repair-schema-result" class="wps-mt-12"></div> <div class="wps-alert wps-alert__danger"> <div class="wps-g-0"> <b><?php esc_html_e('Detected Schema Issues', 'wp-statistics'); ?></b> <p class="description"><?php echo wp_kses(__('We’ve found the following inconsistencies. Click <b>Repair Schema Issues</b> to fix them automatically.', 'wp-statistics'), ['b' => []]); ?></p> <ul class="wps-alert-list"> <?php if (!empty($schemaCheckResult['issues']) && is_array($schemaCheckResult['issues'])) { foreach ($schemaCheckResult['issues'] as $issue) { if ($issue['type'] === 'missing_column') { $message = sprintf( '%1$s.%2$s — %3$s', esc_html($issue['table']), esc_html($issue['column']), __('Missing column', 'wp-statistics') ); echo '<li>' . esc_html($message) . '</li>'; } } } if (!empty($schemaCheckResult['issues']) && is_array($schemaCheckResult['issues'])) { foreach ($schemaCheckResult['issues'] as $issue) { if ($issue['type'] === 'table_missing') { $message = sprintf( '%1$s — %2$s', esc_html($issue['table']), __('Missing table', 'wp-statistics') ); echo '<li>' . esc_html($message) . '</li>'; } } } ?> </ul> </div> </div> <?php endif; ?> </td> </tr> </tbody> </table> </div> </div> <div class="wrap wps-wrap wps-wrap__setting-form"> <div class="postbox"> <table class="form-table"> <tbody> <tr class="wps-settings-box_head"> <th scope="row" colspan="2"><h3><?php esc_html_e('Data Migrations', 'wp-statistics'); ?></h3></th> </tr> <?php $jobs = BackgroundProcessFactory::getAllJobs(); $migrations = BackgroundProcessFactory::getAllMigrations(); foreach($jobs as $key => $job) { if (! in_array($key, $migrations, true) || ! class_exists($job)) { continue; } $jobInstance = new $job(); $jobInstance->localizeJobTexts(); $isActive = $jobInstance->is_active(); $label = $jobInstance->getJobTitle(); $btnLabel = $jobInstance->getJobButtonTitle(); $requiresConfirmation = $jobInstance->isConfirmationRequired() ? '1' : '0'; ?> <tr data-id="<?php echo esc_attr("wps_migration_$key"); ?>" class="wps-migration-row"> <th scope="row"> <span class="wps-setting-label"><?php echo esc_html($label) ?></span> </th> <td> <a class="button wps-button wps-button--primary wps-mt-0 wps-migration-btn <?php echo !empty($isActive) ? 'disabled' : ''; ?>" title="<?php echo esc_html($label); ?>" href="<?php echo !empty($isActive) ? '#' : esc_url($jobInstance->getActionUrl(true)); ?>" aria-disabled="<?php echo !empty($isActive) ? 'true' : 'false'; ?>" data-confirmation="<?php echo esc_attr($requiresConfirmation); ?>" > <?php echo !empty($btnLabel) ? esc_html($btnLabel) : esc_html__('Run Migration', 'wp-statistics'); ?> </a> <p class="description"><?php echo esc_html($jobInstance->getJobDescription()); ?></p> </td> </tr> <?php } ?> </tbody> </table> </div> </div>
[-] updates.php
[edit]
[-] purging.php
[edit]
[-] export.php
[edit]
[-] historical.php
[edit]
[-] resources.php
[edit]
[+]
..