HEX
Server: LiteSpeed
System: Linux eko108.isimtescil.net 4.18.0-477.21.1.lve.1.el8.x86_64 #1 SMP Tue Sep 5 23:08:35 UTC 2023 x86_64
User: uyarreklamcomtr (11202)
PHP: 7.4.33
Disabled: opcache_get_status
Upload Files
File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/cdn.tar
cf.tpl.php000064400000013274151544134770006465 0ustar00<?php

namespace LiteSpeed;

defined('WPINC') || exit;

$this->form_action();
?>

<h3 class="litespeed-title-short">
	<?php echo __('Cloudflare 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'); ?>
				</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>entry.tpl.php000064400000002002151544134770007221 0ustar00<?php

namespace LiteSpeed;

defined('WPINC') || exit;

$menu_list = array(
	'qc'		=> __('QUIC.cloud', 'litespeed-cache'),
	'cf'		=> __('Cloudflare', 'litespeed-cache'),
	'other'	=> __('Other Static CDN', 'litespeed-cache'),
);

?>

<div class="wrap">
	<h1 class="litespeed-h1">
		<?php echo __('LiteSpeed Cache CDN', 'litespeed-cache'); ?>
	</h1>
	<span class="litespeed-desc">
		v<?php echo Core::VER; ?>
	</span>
	<hr class="wp-header-end">
</div>

<div class="litespeed-wrap">
	<h2 class="litespeed-header nav-tab-wrapper">
		<?php
		$i = 1;
		foreach ($menu_list as $tab => $val) {
			$accesskey = $i <= 9 ? "litespeed-accesskey='$i'" : '';
			echo "<a class='litespeed-tab nav-tab' href='#$tab' data-litespeed-tab='$tab' $accesskey>$val</a>";
			$i++;
		}
		?>
	</h2>

	<div class="litespeed-body">
		<?php

		// include all tpl for faster UE
		foreach ($menu_list as $tab => $val) {
			echo "<div data-litespeed-layout='$tab'>";
			require LSCWP_DIR . "tpl/cdn/$tab.tpl.php";
			echo "</div>";
		}

		?>
	</div>

</div>other.tpl.php000064400000014666151544134770007224 0ustar00<?php

namespace LiteSpeed;

defined('WPINC') || exit;
$home_url = home_url('/');
$parsed = parse_url($home_url);
$home_url = str_replace($parsed['scheme'] . ':', '', $home_url);

$cdn_mapping = $this->conf(Base::O_CDN_MAPPING);
// Special handler: Append one row if somehow the DB default preset value got deleted
if (!$cdn_mapping) {
	$this->load_default_vals();
	$cdn_mapping = self::$_default_options[Base::O_CDN_MAPPING];
}

$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; ?>
				<?php $this->title($id); ?>
			</th>
			<td>
				<?php $this->build_switch($id); ?>
				<div class="litespeed-desc">
					<?php echo sprintf(__('Turn this setting %1$s if you are using a traditional Content Delivery Network (CDN) or a subdomain for static content with QUIC.cloud CDN.', 'litespeed-cache'), '<code>' . __('ON', 'litespeed-cache') . '</code>'); ?>
					<?php Doc::learn_more('https://docs.litespeedtech.com/lscache/lscwp/cdn/#use-cdn-mapping'); ?>
				</div>

				<div class="litespeed-desc">
					<?php echo sprintf(__('NOTE: QUIC.cloud CDN and Cloudflare do not use CDN Mapping. If you are are only using QUIC.cloud or Cloudflare, leave this setting %1$s.', 'litespeed-cache'), '<code>' . __('OFF', 'litespeed-cache') . '</code>'); ?>
				</div>
			</td>
		</tr>

		<tr>
			<th class="litespeed-padding-left"></th>
			<td>
				<?php $this->enroll(Base::O_CDN_MAPPING . '[' . Base::CDN_MAPPING_URL . '][]'); ?>
				<?php $this->enroll(Base::O_CDN_MAPPING . '[' . Base::CDN_MAPPING_INC_IMG . '][]'); ?>
				<?php $this->enroll(Base::O_CDN_MAPPING . '[' . Base::CDN_MAPPING_INC_CSS . '][]'); ?>
				<?php $this->enroll(Base::O_CDN_MAPPING . '[' . Base::CDN_MAPPING_INC_JS . '][]'); ?>
				<?php $this->enroll(Base::O_CDN_MAPPING . '[' . Base::CDN_MAPPING_FILETYPE . '][]'); ?>

				<div id="litespeed_cdn_mapping_div"></div>

				<script type="text/babel">
					ReactDOM.render(
					<CDNMapping list={ <?php echo json_encode($cdn_mapping); ?> } />,
					document.getElementById( 'litespeed_cdn_mapping_div' )
				);
			</script>

				<div class="litespeed-warning">
					<?php echo __('NOTE', 'litespeed-cache'); ?>:
					<?php echo __('To randomize CDN hostname, define multiple hostnames for the same resources.', 'litespeed-cache'); ?>
				</div>

				<div class="litespeed-desc">
					<b><?php $this->title(Base::CDN_MAPPING_INC_IMG); ?></b>:
					<?php echo sprintf(__('Serve all image files through the CDN. This will affect all attachments, HTML %s tags, and CSS %s attributes.', 'litespeed-cache'), '<code>&lt;img</code>', '<code>url()</code>'); ?>

					<br />
					<b><?php $this->title(Base::CDN_MAPPING_INC_CSS); ?></b>:
					<?php echo __('Serve all CSS files through the CDN. This will affect all enqueued WP CSS files.', 'litespeed-cache'); ?>

					<br />
					<b><?php $this->title(Base::CDN_MAPPING_INC_JS); ?></b>:
					<?php echo __('Serve all JavaScript files through the CDN. This will affect all enqueued WP JavaScript files.', 'litespeed-cache'); ?>

					<br />
					<b><?php $this->title(Base::CDN_MAPPING_FILETYPE); ?></b>:
					<?php echo __('Static file type links to be replaced by CDN links.', 'litespeed-cache'); ?>
					<?php Doc::one_per_line(); ?>
					<?php echo sprintf(__('This will affect all tags containing attributes: %s %s %s.', 'litespeed-cache'), '<code>src=""</code>', '<code>data-src=""</code>', '<code>href=""</code>'); ?>
					<?php Doc::learn_more('https://docs.litespeedtech.com/lscache/lscwp/cdn/#include-file-types', __('Default value', 'litespeed-cache')); ?>

					<br />
					<?php echo sprintf(__('If you turn any of the above settings OFF, please remove the related file types from the %s box.', 'litespeed-cache'), '<b>' . __('Include File Types', 'litespeed-cache') . '</b>'); ?>
					<?php Doc::learn_more('https://docs.litespeedtech.com/lscache/lscwp/cdn/#include-file-types'); ?>
				</div>

			</td>
		</tr>

		<tr>
			<th>
				<?php $id = Base::O_CDN_ATTR; ?>
				<?php $this->title($id); ?>
			</th>
			<td>

				<div class="litespeed-textarea-recommended">
					<div>
						<?php $this->build_textarea($id, 40); ?>
					</div>
					<div>
						<?php $this->recommended($id); ?>
					</div>
				</div>

				<div class="litespeed-desc">
					<?php echo __('Specify which HTML element attributes will be replaced with CDN Mapping.', 'litespeed-cache'); ?>
					<?php echo __('Only attributes listed here will be replaced.', 'litespeed-cache'); ?>
					<br /><?php echo sprintf(__('Use the format %1$s or %2$s (element is optional).', 'litespeed-cache'), '<code>element.attribute</code>', '<code>.attribute</code>'); ?>
					<?php Doc::one_per_line(); ?>
				</div>
			</td>
		</tr>

		<tr>
			<th class="litespeed-padding-left">
				<?php $id = Base::O_CDN_ORI; ?>
				<?php $this->title($id); ?>
			</th>
			<td>
				<?php $this->build_textarea($id); ?>
				<div class="litespeed-desc">
					<?php echo sprintf(__('Site URL to be served through the CDN. Beginning with %1$s. For example, %2$s.', 'litespeed-cache'), '<code>//</code>', '<code>' . $home_url . '</code>'); ?>
					<br /><?php echo sprintf(__('Wildcard %1$s supported (match zero or more characters). For example, to match %2$s and %3$s, use %4$s.', 'litespeed-cache'), '<code>*</code>', '<code>//www.aa.com</code>', '<code>//aa.com</code>', '<code>//*aa.com</code>'); ?>
					<?php Doc::one_per_line(); ?>
				</div>
			</td>
		</tr>

		<tr>
			<th class="litespeed-padding-left">
				<?php $id = Base::O_CDN_ORI_DIR; ?>
				<?php $this->title($id); ?>
			</th>
			<td>
				<div class="litespeed-textarea-recommended">
					<div>
						<?php $this->build_textarea($id, 40); ?>
					</div>
					<div>
						<?php $this->recommended($id); ?>
					</div>
				</div>

				<div class="litespeed-desc">
					<?php echo __('Only files within these directories will be pointed to the CDN.', 'litespeed-cache'); ?>
					<?php Doc::one_per_line(); ?>
				</div>
			</td>
		</tr>

		<tr>
			<th class="litespeed-padding-left">
				<?php $id = Base::O_CDN_EXC; ?>
				<?php $this->title($id); ?>
			</th>
			<td>
				<?php $this->build_textarea($id); ?>
				<div class="litespeed-desc">
					<?php echo __('Paths containing these strings will not be served from the CDN.', 'litespeed-cache'); ?>
					<?php Doc::one_per_line(); ?>
				</div>
			</td>
		</tr>

	</tbody>
</table>

<?php
$this->form_end();
qc.tpl.php000064400000017410151544134770006474 0ustar00<?php

namespace LiteSpeed;

defined('WPINC') || exit;

$__cloud = Cloud::cls();
$__cloud->finish_qc_activation('cdn');
$cloud_summary = Cloud::get_summary();
?>

<div class="litespeed-flex-container litespeed-column-with-boxes">

	<div class="litespeed-width-7-10 litespeed-column-left litespeed-cdn-summary-wrapper">
		<div class="litespeed-column-left-inside">

			<h3>
				<?php if ($__cloud->activated()) : ?>
					<a class="button button-small litespeed-right litespeed-learn-more" href="<?php echo Utility::build_url(Router::ACTION_CLOUD, Cloud::TYPE_SYNC_STATUS); ?>">
						<span class="dashicons dashicons-update"></span> <?php echo __('Refresh Status', 'litespeed-cache'); ?>
					</a>
				<?php endif; ?>
				<span class="litespeed-quic-icon"></span> <?php echo __('QUIC.cloud CDN Status Overview', 'litespeed-cache'); ?>
			</h3>
			<p class="litespeed-desc"><?php echo __('Check the status of your most important settings and the health of your CDN setup here.', 'litespeed-cache'); ?></p>

			<?php if (!$__cloud->activated()) : ?>
				<div class="litespeed-dashboard-unlock litespeed-dashboard-unlock--inline">
					<div>
						<h3 class="litespeed-dashboard-unlock-title"><strong class="litespeed-qc-text-gradient"><?php echo __('Accelerate, Optimize, Protect', 'litespeed-cache'); ?></strong></h3>
						<p class="litespeed-dashboard-unlock-desc"><?php echo __('Speed up your WordPress site even further with <strong>QUIC.cloud Online Services and CDN</strong>.', 'litespeed-cache'); ?></p>
						<p><?php echo __('Free monthly quota available.', 'litespeed-cache'); ?></p>
						<p><a class="button button-primary" href="<?php echo Utility::build_url(Router::ACTION_CLOUD, Cloud::TYPE_ACTIVATE, false, null, array('ref' => 'cdn')); ?>"><span class="dashicons dashicons-yes"></span><?php echo __('Enable QUIC.cloud services', 'litespeed-cache'); ?></a></p>
						<p class="litespeed-dashboard-unlock-footer">
							<?php echo __('QUIC.cloud provides CDN and online optimization services, and is not required. You may use many features of this plugin without QUIC.cloud.', 'litespeed-cache'); ?><br>
							<a href="https://www.quic.cloud/" target="_blank"><?php echo __('Learn More about QUIC.cloud', 'litespeed-cache'); ?></a>
						</p>
					</div>
				</div>
			<?php elseif (empty($cloud_summary['qc_activated']) || $cloud_summary['qc_activated'] != 'cdn') : ?>
				<div class="litespeed-top20">
					<?php if (!empty($cloud_summary['qc_activated']) && $cloud_summary['qc_activated'] == 'linked') : ?>
						<p><?php echo __('QUIC.cloud CDN is currently <strong>fully disabled</strong>.', 'litespeed-cache'); ?></p>
					<?php else : ?>
						<p><?php echo __('QUIC.cloud CDN is <strong>not available</strong> for anonymous (unlinked) users.', 'litespeed-cache'); ?></p>
					<?php endif; ?>
					<p>
						<?php
						$btn_title = __('Link & Enable QUIC.cloud CDN', 'litespeed-cache');
						if (!empty($cloud_summary['qc_activated']) && $cloud_summary['qc_activated'] == 'linked') {
							$btn_title = __('Enable QUIC.cloud CDN', 'litespeed-cache');
						}
						?>
						<?php Doc::learn_more(
							Utility::build_url(Router::ACTION_CLOUD, Cloud::TYPE_ENABLE_CDN, false, null, array('ref' => 'cdn')),
							'<span class="dashicons dashicons-yes"></span>' . $btn_title,
							true,
							'button button-primary litespeed-button-cta'
						); ?>
					</p>
					<h3 class="litespeed-title-section"><?php echo __('Content Delivery Network Service', 'litespeed-cache'); ?></h3>
					<p class="litespeed-text-md">Serve your visitors fast <strong class="litespeed-qc-text-gradient"><?php echo __('no matter where they live.', 'litespeed-cache'); ?></strong>
					<p>
						<?php echo sprintf(__('Best available WordPress performance, globally fast TTFB, easy setup, and <a %s>more</a>!', 'litespeed-cache'), ' href="https://www.quic.cloud/quic-cloud-services-and-features/litespeed-cache-service/" target="_blank"'); ?>
					</p>
				</div>
			<?php else : ?>
				<?php echo $__cloud->load_qc_status_for_dash('cdn_dash'); ?>
			<?php endif; ?>
		</div>
	</div>

	<div class="litespeed-width-3-10 litespeed-column-right">

		<div class="postbox litespeed-postbox">
			<div class="inside">
				<h3 class="litespeed-title">
					<?php echo __('QUIC.cloud CDN Options', 'litespeed-cache'); ?>
				</h3>
				<?php if (!empty($cloud_summary['partner']) && !empty($cloud_summary['partner']['disable_qc_login'])) : ?>
					<?php if (!empty($cloud_summary['partner']['logo'])) : ?>
						<?php if (!empty($cloud_summary['partner']['url'])) : ?>
							<a href="<?php echo $cloud_summary['partner']['url']; ?>" target="_blank"><img src="<?php echo $cloud_summary['partner']['logo']; ?>" alt="<?php echo $cloud_summary['partner']['name']; ?>"></a>
						<?php else : ?>
							<img src="<?php echo $cloud_summary['partner']['logo']; ?>" alt="<?php echo $cloud_summary['partner']['name']; ?>">
						<?php endif; ?>
					<?php elseif (!empty($cloud_summary['partner']['name'])) : ?>
						<?php if (!empty($cloud_summary['partner']['url'])) : ?>
							<a href="<?php echo $cloud_summary['partner']['url']; ?>" target="_blank"><span class="postbox-partner-name"><?php echo $cloud_summary['partner']['name']; ?></span></a>
						<?php else : ?>
							<span class="postbox-partner-name"><?php echo $cloud_summary['partner']['name']; ?></span>
						<?php endif; ?>
					<?php endif; ?>

					<?php if (!$__cloud->activated()) : ?>
						<p><?php echo __('To manage your QUIC.cloud options, go to your hosting provider\'s portal.', 'litespeed-cache'); ?></p>
					<?php else : ?>
						<p><?php echo __('To manage your QUIC.cloud options, please contact your hosting provider.', 'litespeed-cache'); ?></p>
					<?php endif; ?>
				<?php else : ?>
					<?php if (!$__cloud->activated()) : ?>
						<p><?php echo __('To manage your QUIC.cloud options, go to QUIC.cloud Dashboard.', 'litespeed-cache'); ?></p>
						<p class="litespeed-top20"><button type="button" class="button button-primary disabled"><?php echo __('Link to QUIC.cloud', 'litespeed-cache'); ?> <span class="dashicons dashicons-external"></span></button></p>
					<?php elseif ($cloud_summary['qc_activated'] == 'anonymous') : ?>
						<p><?php echo __('You are currently using services as an anonymous user. To manage your QUIC.cloud options, use the button below to create an account and link to the QUIC.cloud Dashboard.', 'litespeed-cache'); ?></p>
						<p class="litespeed-top20"><a href="<?php echo $__cloud->qc_link(); ?>" target="qc" class="button button-<?php echo ((empty($cloud_summary['qc_activated']) || $cloud_summary['qc_activated'] != 'cdn') ? 'secondary' : 'primary'); ?>"><?php echo __('Link to QUIC.cloud', 'litespeed-cache'); ?> <span class="dashicons dashicons-external"></span></a></p>
					<?php elseif ($cloud_summary['qc_activated'] == 'linked') : ?>
						<p class="litespeed-top20"><a href="<?php echo $__cloud->qc_link(); ?>" target="qc" class="button button-<?php echo ((empty($cloud_summary['qc_activated']) || $cloud_summary['qc_activated'] != 'cdn') ? 'secondary' : 'primary'); ?>"><?php echo __('My QUIC.cloud Dashboard', 'litespeed-cache'); ?> <span class="dashicons dashicons-external"></span></a></p>
					<?php else : ?>
						<p><?php echo __('To manage your QUIC.cloud options, go to QUIC.cloud Dashboard.', 'litespeed-cache'); ?></p>
						<p class="litespeed-top20"><a href="<?php echo $__cloud->qc_link(); ?>" target="qc" class="button button-<?php echo ((empty($cloud_summary['qc_activated']) || $cloud_summary['qc_activated'] != 'cdn') ? 'secondary' : 'primary'); ?>"><?php echo __('My QUIC.cloud Dashboard', 'litespeed-cache'); ?> <span class="dashicons dashicons-external"></span></a></p>
					<?php endif; ?>
				<?php endif; ?>
			</div>
		</div>


		<?php $promo_mini = $__cloud->load_qc_status_for_dash('promo_mini'); ?>
		<?php if ($promo_mini) : ?>
			<?php echo $promo_mini; ?>
		<?php endif; ?>


	</div>

</div>