| Server IP : 130.225.57.55 / Your IP : 216.73.216.60 Web Server : Apache System : Linux wp-vhost07 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64 User : root ( 0) PHP Version : 8.1.2-1ubuntu2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /srv/www/reco2st.eu/https/wp-content/plugins/w3-total-cache/ |
Upload File : |
<?php
/**
* File: ObjectCache_Page_View_PurgeLog.php
*
* @package W3TC
*/
namespace W3TC;
defined( 'ABSPATH' ) || exit;
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 $w3tc_line ) : ?>
<div class="w3tc_purge_log_date"><?php echo esc_html( $w3tc_line['date'] ); ?></div>
<div class="w3tc_purge_log_message"><td><?php echo esc_html( $w3tc_line['message'] ); ?></div>
<div class="w3tc_purge_log_backtrace">
<?php foreach ( $w3tc_line['backtrace'] as $w3tc_backtrace_line ) : ?>
<div class="w3tc_purge_log_traceline">
<?php echo esc_html( $w3tc_backtrace_line ); ?>
</div>
<?php endforeach ?>
</div>
<?php endforeach ?>
</div>
<?php Util_Ui::postbox_footer(); ?>
</div>