kollapsminoriteten/wp-content/plugins/redis-cache/includes/ui/tabs/diagnostics.php

24 lines
647 B
PHP
Raw Permalink Normal View History

2025-06-10 20:14:43 +02:00
<?php
/**
* Diagnostics tab template
*
* @package Rhubarb\RedisCache
*/
defined( '\\ABSPATH' ) || exit;
?>
<div class="card">
<pre id="redis-cache-diagnostics"><?php require __DIR__ . '/../../diagnostics.php'; ?></pre>
</div>
<p id="redis-cache-copy-button">
<span class="copy-button-wrapper">
<button type="button" class="button copy-button" data-clipboard-target="#redis-cache-diagnostics">
2025-07-27 19:58:08 +02:00
<?php esc_html_e( 'Copy diagnostics to clipboard', 'redis-cache' ); ?>
2025-06-10 20:14:43 +02:00
</button>
2025-07-27 19:58:08 +02:00
<span class="success hidden" aria-hidden="true"><?php esc_html_e( 'Copied!', 'redis-cache' ); ?></span>
2025-06-10 20:14:43 +02:00
</span>
</p>