File "cf.tpl.php"
Full Path: /home/rattkxnv/byattorney.com/wp-content/plugins/litespeed-cache/tpl/cdn/cf.tpl.php
File size: 5.86 KB
MIME-type: text/x-php
Charset: utf-8
<?php
namespace LiteSpeed;
defined('WPINC') || exit;
$this->form_action();
?>
<h3 class="litespeed-title-short">
<?php echo __('CDN Settings', 'litespeed-cache'); ?>
<?php Doc::learn_more('https://docs.litespeedtech.com/lscache/lscwp/cdn/'); ?>
</h3>
<table class="wp-list-table striped litespeed-table">
<tbody>
<tr>
<th>
<?php $id = Base::O_CDN_CLOUDFLARE; ?>
<?php $this->title($id); ?>
</th>
<td>
<?php $this->build_switch($id); ?>
<div class="litespeed-desc">
<?php echo sprintf(__('Use %s API functionality.', 'litespeed-cache'), 'Cloudflare'); ?>
<?php echo sprintf(__('This can be managed from %1$s%2$s tab.', 'litespeed-cache'), '<b>' . __('CDN', 'litespeed-cache') . '</b> -> <b>', __('Manage', 'litespeed-cache') . '</b>'); ?>
</div>
<div class="litespeed-block">
<div class='litespeed-col'>
<label class="litespeed-form-label"><?php echo __('Global API Key / API Token', 'litespeed-cache'); ?></label>
<?php $this->build_input(Base::O_CDN_CLOUDFLARE_KEY); ?>
<div class="litespeed-desc">
<?php echo sprintf(__('Your API key / token is used to access %s APIs.', 'litespeed-cache'), 'Cloudflare'); ?>
<?php echo sprintf(__('Get it from <a %1$s>%2$s</a>.', 'litespeed-cache'), 'href="https://dash.cloudflare.com/profile/api-tokens" target="_blank"', 'Cloudflare'); ?>
<?php echo sprintf(__('Recommended to generate the token from Cloudflare API token template "WordPress".', 'litespeed-cache')); ?>
</div>
</div>
<div class='litespeed-col'>
<label class="litespeed-form-label"><?php echo __('Email Address', 'litespeed-cache'); ?></label>
<?php $this->build_input(Base::O_CDN_CLOUDFLARE_EMAIL); ?>
<div class="litespeed-desc">
<?php echo sprintf(__('Your Email address on %s.', 'litespeed-cache'), 'Cloudflare'); ?>
<?php echo sprintf(__('Optional when API token used.', 'litespeed-cache')); ?>
</div>
</div>
<div class='litespeed-col'>
<label class="litespeed-form-label"><?php echo __('Domain', 'litespeed-cache'); ?></label>
<?php
$cf_zone = $this->conf(Base::O_CDN_CLOUDFLARE_ZONE);
$cls = $cf_zone ? ' litespeed-input-success' : ' litespeed-input-warning';
$this->build_input(Base::O_CDN_CLOUDFLARE_NAME, $cls);
?>
<div class="litespeed-desc">
<?php echo __('You can just type part of the domain.', 'litespeed-cache'); ?>
<?php echo __('Once saved, it will be matched with the current list and completed automatically.', 'litespeed-cache'); ?>
</div>
</div>
</div>
</td>
</tr>
</tbody>
</table>
<?php
$this->form_end();
$cf_on = $this->conf(Base::O_CDN_CLOUDFLARE);
$cf_domain = $this->conf(Base::O_CDN_CLOUDFLARE_NAME) ?: '-';
$cf_zone = $this->conf(Base::O_CDN_CLOUDFLARE_ZONE) ?: '-';
$curr_status = CDN\Cloudflare::get_option(CDN\Cloudflare::ITEM_STATUS, array());
?>
<h3 class="litespeed-title"><?php echo __('Cloudflare', 'litespeed-cache'); ?></h3>
<?php if (!$cf_on) : ?>
<div class="litespeed-callout notice notice-error inline">
<h4><?php echo __('WARNING', 'litespeed-cache'); ?></h4>
<p>
<?php echo __('To enable the following functionality, turn ON Cloudflare API in CDN Settings.', 'litespeed-cache'); ?>
</p>
</div>
<?php endif; ?>
<p><?php echo __('Cloudflare Domain', 'litespeed-cache'); ?>: <code><?php echo esc_textarea($cf_domain); ?></code></p>
<p><?php echo __('Cloudflare Zone', 'litespeed-cache'); ?>: <code><?php echo esc_textarea($cf_zone); ?></code></p>
<p>
<b><?php echo __('Development Mode', 'litespeed-cache'); ?>:</b>
<a href="<?php echo Utility::build_url(Router::ACTION_CDN_CLOUDFLARE, CDN\Cloudflare::TYPE_SET_DEVMODE_ON); ?>" class="button litespeed-btn-warning">
<?php echo __('Turn ON', 'litespeed-cache'); ?>
</a>
<a href="<?php echo Utility::build_url(Router::ACTION_CDN_CLOUDFLARE, CDN\Cloudflare::TYPE_SET_DEVMODE_OFF); ?>" class="button litespeed-btn-warning">
<?php echo __('Turn OFF', 'litespeed-cache'); ?>
</a>
<a href="<?php echo Utility::build_url(Router::ACTION_CDN_CLOUDFLARE, CDN\Cloudflare::TYPE_GET_DEVMODE); ?>" class="button litespeed-btn-success">
<?php echo __('Check Status', 'litespeed-cache'); ?>
</a>
<?php if ($curr_status) : ?>
<span class="litespeed-desc">
<?php
if (time() >= $curr_status['devmode_expired']) {
$expired_at = date('m/d/Y H:i:s', $curr_status['devmode_expired'] + LITESPEED_TIME_OFFSET);
$curr_status['devmode'] = 'OFF';
echo sprintf(__('Current status is %1$s since %2$s.', 'litespeed-cache'), '<code>' . strtoupper($curr_status['devmode']) . '</code>', '<code>' . $expired_at . '</code>');
} else {
$expired_at = $curr_status['devmode_expired'] - time();
$expired_at = Utility::readable_time($expired_at, 3600 * 3, true);
?>
<?php echo sprintf(__('Current status is %s.', 'litespeed-cache'), '<code>' . strtoupper($curr_status['devmode']) . '</code>'); ?>
<?php echo sprintf(__('Development mode will be automatically turned off in %s.', 'litespeed-cache'), '<code>' . $expired_at . '</code>'); ?>
<?php
}
?>
</span>
<?php endif; ?>
<p class="litespeed-desc">
<?php echo __('Temporarily bypass Cloudflare cache. This allows changes to the origin server to be seen in realtime.', 'litespeed-cache'); ?>
<?php echo __('Development Mode will be turned off automatically after three hours.', 'litespeed-cache'); ?>
<a href="https://support.cloudflare.com/hc/en-us/articles/200168246" target="_blank"><?php echo __('Learn More', 'litespeed-cache'); ?></a>
</p>
</p>
<p>
<b><?php echo __('Cloudflare Cache', 'litespeed-cache'); ?>:</b>
<?php if (!$cf_on) : ?>
<a href="#" class="button button-secondary disabled">
<?php else : ?>
<a href="<?php echo Utility::build_url(Router::ACTION_CDN_CLOUDFLARE, CDN\Cloudflare::TYPE_PURGE_ALL); ?>" class="button litespeed-btn-danger">
<?php endif; ?>
<?php echo __('Purge Everything', 'litespeed-cache'); ?>
</a>
</p>