| Server IP : 138.197.162.186 / Your IP : 216.73.216.184 Web Server : nginx/1.24.0 System : Linux ubuntu-s-1vcpu-512mb-10gb-tor1 6.8.0-71-generic #71-Ubuntu SMP PREEMPT_DYNAMIC Tue Jul 22 16:52:38 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /proc/self/cwd/wp-content/plugins/w3-total-cache/ |
Upload File : |
<?php
/**
* File: ObjectCache_Page_View_PurgeLog.php
*
* @package W3TC
*/
namespace W3TC;
if ( ! defined( 'W3TC' ) ) {
die();
}
require W3TC_INC_DIR . '/options/common/header.php';
?>
<style>
<?php require_once __DIR__ . '/shared/purge_log.css'; ?>
</style>
<div class="metabox-holder">
<?php Util_Ui::postbox_header( esc_html__( 'Object Cache Purges Log', 'w3-total-cache' ) ); ?>
<h1><?php esc_html_e( 'Purges Log', 'w3-total-cache' ); ?></h1>
<div class="w3tc_purge_log_table">
<?php foreach ( $lines as $line ) : ?>
<div class="w3tc_purge_log_date"><?php echo esc_html( $line['date'] ); ?></div>
<div class="w3tc_purge_log_message"><td><?php echo esc_html( $line['message'] ); ?></div>
<div class="w3tc_purge_log_backtrace">
<?php foreach ( $line['backtrace'] as $backtrace_line ) : ?>
<div class="w3tc_purge_log_traceline">
<?php echo esc_html( $backtrace_line ); ?>
</div>
<?php endforeach ?>
</div>
<?php endforeach ?>
</div>
<?php Util_Ui::postbox_footer(); ?>
</div>