HEX
Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.2.34
System: Linux atalantini.com 3.10.0-1127.13.1.el7.x86_64 #1 SMP Tue Jun 23 15:46:38 UTC 2020 x86_64
User: root (0)
PHP: 7.2.34
Disabled: NONE
Upload Files
File: //opt/plugins/w3-total-cache/Extension_CloudFlare_Widget_View.php
<?php
namespace W3TC;

if ( !defined( 'W3TC' ) )
	die();

?>
<?php if ( is_null( $stats ) ): ?>
<?php _e( 'You have not configured well email, API key or domain', 'w3-total-cache' ) ?>
<?php else: ?>

<p class="cloudflare_p">
    Period
    <?php $this->time_mins( $stats, 'since' ) ?>
      -
    <?php $this->time_mins( $stats, 'until' ) ?>
</p>
<table class="cloudflare_table">
    <tr>
        <td></td>
        <td class="cloudflare_td_header">All</td>
        <td class="cloudflare_td_header">Cached</td>
    </tr>
    <tr>
        <td class="cloudflare_td">Bandwidth</td>
        <?php $this->v( $stats, 'bandwidth', 'all' ) ?>
        <?php $this->v( $stats, 'bandwidth', 'cached' ) ?>
    </tr>
    <tr>
        <td class="cloudflare_td">Requests</td>
        <?php $this->v( $stats, 'requests', 'all' ) ?>
        <?php $this->v( $stats, 'requests', 'cached' ) ?>
    </tr>
    <tr>
        <td class="cloudflare_td">Page Views</td>
        <?php $this->v( $stats, 'pageviews', 'all' ) ?>
    </tr>
    <tr>
        <td class="cloudflare_td">Uniques</td>
        <?php $this->v( $stats, 'uniques', 'all' ) ?>
    </tr>
    <tr>
        <td class="cloudflare_td">Threats</td>
        <?php $this->v( $stats, 'threats', 'all' ) ?>
    </tr>
</table>

<?php endif; ?>