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/general.tar
entry.tpl.php000064400000002245151542375100007222 0ustar00<?php

namespace LiteSpeed;

defined('WPINC') || exit;

$menu_list = array(
	'online'	=> __('Online Services', 'litespeed-cache'),
	'settings'	=> __('General Settings', 'litespeed-cache'),
	'settings_tuning' => __('Tuning', 'litespeed-cache'),
);

if ($this->_is_network_admin) {
	$menu_list = array(
		'network_settings' => __('General Settings', 'litespeed-cache'),
	);
}

?>

<div class="wrap">
	<h1 class="litespeed-h1">
		<?php echo __('LiteSpeed Cache General Settings', '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/general/$tab.tpl.php";
			echo "</div>";
		}

		?>
	</div>

</div>network_settings.tpl.php000064400000002015151542375100011465 0ustar00<?php
namespace LiteSpeed;
defined( 'WPINC' ) || exit;

$this->form_action();
?>

<h3 class="litespeed-title-short">
	<?php echo __( 'General Settings', 'litespeed-cache' ); ?>
	<?php Doc::learn_more( 'https://docs.litespeedtech.com/lscache/lscwp/general/' ); ?>
</h3>

<?php
$this->form_action( Router::ACTION_SAVE_SETTINGS_NETWORK );
?>

<table class="wp-list-table striped litespeed-table"><tbody>
	<?php require LSCWP_DIR . 'tpl/general/settings_inc.auto_upgrade.tpl.php'; ?>

	<tr>
		<th><?php echo __('Use Primary Site Configuration', 'litespeed-cache'); ?></th>
		<td>
			<?php $this->build_switch( Base::NETWORK_O_USE_PRIMARY ); ?>
			<div class="litespeed-desc">
				<?php echo __("Check this option to use the primary site's configuration for all subsites.", 'litespeed-cache'); ?>
				<?php echo __('This will disable the settings page on all subsites.', 'litespeed-cache'); ?>
			</div>
		</td>
	</tr>

	<?php require LSCWP_DIR . 'tpl/general/settings_inc.guest.tpl.php'; ?>

</tbody></table>

<?php
$this->form_end( true );
online.tpl.php000064400000026000151542375100007340 0ustar00<?php

namespace LiteSpeed;

defined('WPINC') || exit;

$cloud_summary = Cloud::get_summary();

$__cloud = Cloud::cls();
$__cloud->finish_qc_activation('online');

?>

<h3 class="litespeed-title-short">
	<?php echo __('QUIC.cloud Online Services', 'litespeed-cache'); ?>
	<?php Doc::learn_more('https://www.quic.cloud/quic-cloud-services-and-features/'); ?>
</h3>

<div class="litespeed-desc"><?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'); ?></div>

<?php if ($__cloud->activated()) : ?>
	<div class="litespeed-callout notice notice-success inline">
		<h4><?php echo __('Current Cloud Nodes in Service', 'litespeed-cache'); ?>
			<a class="litespeed-right litespeed-redetect" href="<?php echo Utility::build_url(Router::ACTION_CLOUD, Cloud::TYPE_CLEAR_CLOUD, false, null, array('ref' => 'online')); ?>" data-balloon-pos="up" data-balloon-break aria-label='<?php echo __('Click to clear all nodes for further redetection.', 'litespeed-cache'); ?>' data-litespeed-cfm="<?php echo __('Are you sure you want to clear all cloud nodes?', 'litespeed-cache'); ?>"><i class='litespeed-quic-icon'></i> <?php echo __('Redetect', 'litespeed-cache'); ?></a>
		</h4>
		<p>
			<?php
			$has_service = false;
			foreach (Cloud::$SERVICES as $svc) {
				if (isset($cloud_summary['server.' . $svc])) {
					$has_service = true;
					echo '<p><strong>Service:</strong> <code>' . $svc . '</code> <strong>Node:</strong> <code>' . $cloud_summary['server.' . $svc] . '</code> <strong>Connected Date:</strong> <code>' . Utility::readable_time($cloud_summary['server_date.' . $svc]) . '</code></p>';
				}
			}
			if (!$has_service) {
				echo __('No cloud services currently in use', 'litespeed-cache');
			}
			?>
		</p>
	</div>
<?php endif; ?>

<?php if (!$__cloud->activated()) : ?>
	<h4 class="litespeed-text-md litespeed-top30"><span class="dashicons dashicons-no-alt litespeed-danger"></span>&nbsp;<?php echo __('QUIC.cloud Integration Disabled', 'litespeed-cache'); ?></h4>
	<p><?php echo __('Speed up your WordPress site even further with QUIC.cloud Online Services and CDN.', 'litespeed-cache'); ?></p>
	<div class="litespeed-desc"><?php echo __('Free monthly quota available.', 'litespeed-cache'); ?></div>
	<p><a class="button button-primary" href="<?php echo Utility::build_url(Router::ACTION_CLOUD, Cloud::TYPE_ACTIVATE, false, null, array('ref' => 'online')); ?>">
			<span class="dashicons dashicons-yes"></span>
			<?php _e('Enable QUIC.cloud services', 'litespeed-cache'); ?>
		</a></p>


	<div>
		<h3 class="litespeed-title-section"><?php echo __('Online Services', 'litespeed-cache'); ?></h3>
		<p><?php echo __('QUIC.cloud\'s Online Services improve your site in the following ways:', 'litespeed-cache'); ?></p>
		<ul>
			<li><span class="dashicons dashicons-saved litespeed-primary"></span> <?php echo __('<strong>Image Optimization</strong> gives you smaller image file sizes that transmit faster.', 'litespeed-cache'); ?></li>
			<li><span class="dashicons dashicons-saved litespeed-primary"></span> <?php echo __('<strong>Page Optimization</strong> streamlines page styles and visual elements for faster loading.', 'litespeed-cache'); ?></li>
		</ul>

		<h4 class="litespeed-text-md litespeed-margin-bottom-remove">Image Optimization</h4>
		<p><?php echo __('QUIC.cloud\'s Image Optimization service does the following:', 'litespeed-cache'); ?></p>
		<ul>
			<li><span class="dashicons dashicons-saved litespeed-primary"></span> <?php echo __('Processes your uploaded PNG and JPG images to produce smaller versions that don\'t sacrifice quality.', 'litespeed-cache'); ?></li>
			<li><span class="dashicons dashicons-saved litespeed-primary"></span> <?php echo __('Optionally creates next-generation WebP or AVIF image files.', 'litespeed-cache'); ?></li>
		</ul>
		<p><?php echo __('Processing for PNG, JPG, and WebP image formats is free. AVIF is available for a fee.', 'litespeed-cache'); ?> <a href="https://www.quic.cloud/quic-cloud-services-and-features/image-optimization-service/" target="_blank"><?php echo __('Learn More', 'litespeed-cache'); ?></a></p>

		<h4 class="litespeed-text-md litespeed-margin-bottom-remove">Page Optimization</h4>
		<p><?php echo __('QUIC.cloud\'s Page Optimization services address CSS bloat, and improve the user experience during page load, which can lead to improved page speed scores.', 'litespeed-cache'); ?></p>
		<ul>
			<li><span class="dashicons dashicons-saved litespeed-primary"></span> <?php echo __('<strong>Critical CSS (CCSS)</strong> loads visible above-the-fold content faster and with full styling.', 'litespeed-cache'); ?></li>
			<li><span class="dashicons dashicons-saved litespeed-primary"></span> <?php echo __('<strong>Unique CSS (UCSS)</strong> removes unused style definitions for a speedier page load overall.', 'litespeed-cache'); ?></li>
			<li><span class="dashicons dashicons-saved litespeed-primary"></span> <?php echo __('<strong>Low Quality Image Placeholder (LQIP)</strong> gives your imagery a more pleasing look as it lazy loads.', 'litespeed-cache'); ?></li>
			<li><span class="dashicons dashicons-saved litespeed-primary"></span> <?php echo __('<strong>Viewport Images (VPI)</strong> provides a well-polished fully-loaded view above the fold.', 'litespeed-cache'); ?></li>
		</ul>

		<div>
			<a href="https://www.quic.cloud/quic-cloud-services-and-features/page-optimization/"><?php echo __('Learn More', 'litespeed-cache'); ?></a>
		</div>
	</div>

	<div>
		<h3 class="litespeed-title-section"><?php echo __('Content Delivery Network', 'litespeed-cache'); ?></h3>

		<h4 class="litespeed-text-md litespeed-margin-bottom-remove">QUIC.cloud CDN:</h4>
		<ul>
			<li><span class="dashicons dashicons-saved litespeed-primary"></span> <?php echo __('Caches your entire site, including dynamic content and <strong>ESI blocks</strong>.', 'litespeed-cache'); ?></li>
			<li><span class="dashicons dashicons-saved litespeed-primary"></span> <?php echo __('Delivers global coverage with a growing <strong>network of 80+ PoPs</strong>.', 'litespeed-cache'); ?></li>
			<li><span class="dashicons dashicons-saved litespeed-primary"></span> <?php echo __('Provides <strong>security at the CDN level</strong>, protecting your server from attack.', 'litespeed-cache'); ?></li>
			<li><span class="dashicons dashicons-saved litespeed-primary"></span> <?php echo __('Offers optional <strong>built-in DNS service</strong> to simplify CDN onboarding.', 'litespeed-cache'); ?></li>
		</ul>

		<div>
			<a href="https://www.quic.cloud/quic-cloud-services-and-features/quic-cloud-cdn-service/"><?php echo __('Learn More', 'litespeed-cache'); ?></a>
		</div>

		<hr class="litespeed-hr-with-space">

		<p class="litespeed-desc"><?php echo __('In order to use most QUIC.cloud services, you need quota. QUIC.cloud gives you free quota every month, but if you need more, you can purchase it.', 'litespeed-cache'); ?> <a href="https://docs.quic.cloud/billing/services/" target="_blank">Learn More</a></p>

		<div class="litespeed-flex litespeed-flex-align-center">
			<a class="button button-secondary litespeed-right20" href="<?php echo Utility::build_url(Router::ACTION_CLOUD, Cloud::TYPE_ACTIVATE, false, null, array('ref' => 'online')); ?>">
				<span class="dashicons dashicons-yes"></span>
				<?php _e('Enable QUIC.cloud services', 'litespeed-cache'); ?>
			</a>
		</div>
	</div>


<?php elseif (!empty($cloud_summary['qc_activated']) && ($cloud_summary['qc_activated'] == 'linked' || $cloud_summary['qc_activated'] == 'cdn')) : ?>
	<h4 class="litespeed-text-md litespeed-top30"><span class="dashicons dashicons-saved litespeed-success"></span>&nbsp;<?php echo __('QUIC.cloud Integration Enabled', 'litespeed-cache'); ?></h4>
	<p><?php echo __('Your site is connected and ready to use QUIC.cloud Online Services.', 'litespeed-cache'); ?>
		<?php if (empty($cloud_summary['partner'])) : ?>
			<a href="<?php echo $__cloud->qc_link(); ?>" class="litespeed-link-with-icon" target="_blank"><?php echo __('Go to QUIC.cloud dashboard', 'litespeed-cache'); ?> <span class="dashicons dashicons-external"></span></a>
		<?php endif; ?>
	</p>

	<ul>
		<li><span class="dashicons dashicons-yes litespeed-success"></span> <?php echo __('Page Optimization', 'litespeed-cache'); ?></li>
		<li><span class="dashicons dashicons-yes litespeed-success"></span> <?php echo __('Image Optimization', 'litespeed-cache'); ?></li>
		<?php if ($cloud_summary['qc_activated'] == 'cdn') : ?>
			<li><span class="dashicons dashicons-yes litespeed-success"></span> CDN - <?php echo __('Enabled', 'litespeed-cache'); ?></li>
		<?php else : ?>
			<li><span class="dashicons dashicons-no-alt litespeed-default"></span> CDN - <span class="litespeed-default"><?php echo __('Disabled', 'litespeed-cache'); ?></span></li>
		<?php endif; ?>
	</ul>

<?php else : ?>
	<h4 class="litespeed-text-md litespeed-top30"><span class="dashicons dashicons-saved litespeed-success"></span>&nbsp;<?php echo __('QUIC.cloud Integration Enabled with limitations', 'litespeed-cache'); ?></h4>
	<p><?php echo __('Your site is connected and using QUIC.cloud Online Services as an <strong>anonymous user</strong>. The CDN function and certain features of optimization services are not available for anonymous users. Link to QUIC.cloud to use the CDN and all available Online Services features.', 'litespeed-cache'); ?></p>
	<div class="litespeed-desc"><?php echo __('Free monthly quota available.', 'litespeed-cache'); ?></div>

	<ul>
		<li><span class="dashicons dashicons-yes litespeed-success"></span> <?php echo __('Page Optimization', 'litespeed-cache'); ?></li>
		<li><span class="dashicons dashicons-yes litespeed-success"></span> <?php echo __('Image Optimization', 'litespeed-cache'); ?></li>
		<li><span class="dashicons dashicons-no-alt litespeed-danger"></span> CDN - <?php echo __('not available for anonymous users', 'litespeed-cache'); ?></li>
	</ul>

	<p><a class="button button-primary" href="<?php echo Utility::build_url(Router::ACTION_CLOUD, Cloud::TYPE_ACTIVATE, false, null, array('ref' => 'online')); ?>"><span class="dashicons dashicons-yes"></span><?php _e('Link to QUIC.cloud', 'litespeed-cache'); ?></a></p>
<?php endif; ?>


<?php if ($__cloud->activated()) : ?>
	<div class="litespeed-empty-space-medium"></div>
	<div class="litespeed-column-with-boxes-footer">
		<a href="<?php echo Utility::build_url(Router::ACTION_CLOUD, Cloud::TYPE_RESET, false, null, array('ref' => 'online')); ?>" class="litespeed-link-with-icon litespeed-danger" data-litespeed-cfm="<?php echo __('Are you sure you want to disconnect from QUIC.cloud? This will not remove any data from the QUIC.cloud dashboard.', 'litespeed-cache'); ?>"><span class="dashicons dashicons-dismiss"></span><?php echo __('Disconnect from QUIC.cloud', 'litespeed-cache'); ?></a>
		<div class="litespeed-desc litespeed-margin-bottom-remove"><?php echo __('Remove QUIC.cloud integration from this site. Note: QUIC.cloud data will be preserved so you can re-enable services at any time. If you want to fully remove your site from QUIC.cloud, delete the domain through the QUIC.cloud Dashboard first.', 'litespeed-cache'); ?></div>
	</div>
<?php endif; ?>settings.tpl.php000064400000010560151542375100007720 0ustar00<?php

namespace LiteSpeed;

defined('WPINC') || exit;

$__cloud = Cloud::cls();

$cloud_summary = Cloud::get_summary();

$this->form_action();
?>

<h3 class="litespeed-title-short">
	<?php echo __('General Settings', 'litespeed-cache'); ?>
	<?php Doc::learn_more('https://docs.litespeedtech.com/lscache/lscwp/general/'); ?>
</h3>

<table class="wp-list-table striped litespeed-table">
	<tbody>
		<?php if (!$this->_is_multisite) : ?>
			<?php require LSCWP_DIR . 'tpl/general/settings_inc.auto_upgrade.tpl.php'; ?>
		<?php endif; ?>

		<?php if (!$this->_is_multisite) : ?>
			<?php require LSCWP_DIR . 'tpl/general/settings_inc.guest.tpl.php'; ?>
		<?php endif; ?>

		<tr>
			<th>
				<?php $id = Base::O_GUEST_OPTM; ?>
				<?php $this->title($id); ?>
			</th>
			<td>
				<?php $this->build_switch($id); ?>
				<div class="litespeed-desc">
					<span class="litespeed-danger litespeed-text-bold">
						🚨
						<?php echo __('This option enables maximum optimization for Guest Mode visitors.', 'litespeed-cache'); ?>
						<?php Doc::learn_more('https://docs.litespeedtech.com/lscache/lscwp/general/#guest-optimization', __('Please read all warnings before enabling this option.', 'litespeed-cache'), false, 'litespeed-danger'); ?>
					</span>

					<?php
					$typeList = array();
					if ($this->conf(Base::O_GUEST) && !$this->conf(Base::O_OPTM_UCSS)) {
						$typeList[] = 'UCSS';
					}
					if ($this->conf(Base::O_GUEST) && !$this->conf(Base::O_OPTM_CSS_ASYNC)) {
						$typeList[] = 'CCSS';
					}
					if (!empty($typeList)) {
						$theType = implode('/', $typeList);
						echo '<br />';
						echo '<font class="litespeed-info">';
						echo '⚠️ ' . sprintf(__('Your %1s quota on %2s will still be in use.', 'litespeed-cache'), $theType, 'QUIC.cloud');
						echo '</font>';
					}
					?>

					<?php if (!$this->conf(Base::O_GUEST)) : ?>
						<br />
						<font class="litespeed-warning litespeed-left10">
							⚠️ <?php echo __('Notice', 'litespeed-cache'); ?>: <?php echo sprintf(__('%s must be turned ON for this setting to work.', 'litespeed-cache'),  '<code>' . Lang::title(Base::O_GUEST) . '</code>'); ?>
						</font>
					<?php endif; ?>

					<?php if (!$this->conf(Base::O_CACHE_MOBILE)) : ?>
						<br />
						<font class="litespeed-primary litespeed-left10">
							⚠️ <?php echo __('Notice', 'litespeed-cache'); ?>: <?php echo sprintf(__('You need to turn %s on to get maximum result.', 'litespeed-cache'),  '<code>' . Lang::title(Base::O_CACHE_MOBILE) . '</code>'); ?>
						</font>
					<?php endif; ?>

					<?php if (!$this->conf(Base::O_IMG_OPTM_WEBP)) : ?>
						<br />
						<font class="litespeed-primary litespeed-left10">
							⚠️ <?php echo __('Notice', 'litespeed-cache'); ?>: <?php echo sprintf(__('You need to turn %s on and finish all WebP generation to get maximum result.', 'litespeed-cache'),  '<code>' . Lang::title(Base::O_IMG_OPTM_WEBP) . '</code>'); ?>
						</font>
					<?php endif; ?>
				</div>
			</td>
		</tr>

		<tr>
			<th>
				<?php $id = Base::O_SERVER_IP; ?>
				<?php $this->title($id); ?>
			</th>
			<td>
				<?php $this->build_input($id); ?>
				<div class="litespeed-desc">
					<?php echo __('Enter this site\'s IP address to allow cloud services directly call IP instead of domain name. This eliminates the overhead of DNS and CDN lookups.', 'litespeed-cache'); ?>
					<br /><?php echo __('Your server IP', 'litespeed-cache'); ?>: <code id='litespeed_server_ip'>-</code> <a href="javascript:;" class="button button-link" id="litespeed_get_ip"><?php echo __('Check my public IP from', 'litespeed-cache'); ?> CyberPanel.sh</a>
					⚠️ <?php echo __('Notice', 'litespeed-cache'); ?>: <?php echo __('the auto-detected IP may not be accurate if you have an additional outgoing IP set, or you have multiple IPs configured on your server.', 'litespeed-cache'); ?>
					<br /><?php echo __('Please make sure this IP is the correct one for visiting your site.', 'litespeed-cache'); ?>

					<?php $this->_validate_ip($id); ?>
				</div>
			</td>
		</tr>

		<tr>
			<th>
				<?php $id = Base::O_NEWS; ?>
				<?php $this->title($id); ?>
			</th>
			<td>
				<?php $this->build_switch($id); ?>
				<div class="litespeed-desc">
					<?php echo __('Turn this option ON to show latest news automatically, including hotfixes, new releases, available beta versions, and promotions.', 'litespeed-cache'); ?>
				</div>
			</td>
		</tr>

	</tbody>
</table>

<?php $this->form_end(); ?>settings_inc.auto_upgrade.tpl.php000064400000000735151542375100013232 0ustar00<?php
namespace LiteSpeed;
defined( 'WPINC' ) || exit;
?>

	<!-- build_setting_auto_upgrade -->
	<tr>
		<th>
			<?php $id = Base::O_AUTO_UPGRADE; ?>
			<?php $this->title( $id ); ?>
		</th>
		<td>
			<?php $this->build_switch( $id ); ?>
			<div class="litespeed-desc">
				<?php echo __( 'Turn this option ON to have LiteSpeed Cache updated automatically, whenever a new version is released. If OFF, update manually as usual.', 'litespeed-cache' ); ?>
			</div>
		</td>
	</tr>
settings_inc.guest.tpl.php000064400000003555151542375100011705 0ustar00<?php
namespace LiteSpeed;
defined( 'WPINC' ) || exit;

$guest_update_url = parse_url( LSWCP_PLUGIN_URL . GUI::PHP_GUEST, PHP_URL_PATH );

?>
	<tr>
		<th>
			<?php $id = Base::O_GUEST; ?>
			<?php $this->title( $id ); ?>
		</th>
		<td>
			<?php $this->build_switch( $id ); ?>
			<div class="litespeed-desc">
				<?php echo __( 'Guest Mode provides an always cacheable landing page for an automated guest\'s first time visit, and then attempts to update cache varies via AJAX.', 'litespeed-cache' ); ?>
				<?php echo __( 'This option can help to correct the cache vary for certain advanced mobile or tablet visitors.', 'litespeed-cache' ); ?>
				<?php Doc::learn_more( 'https://docs.litespeedtech.com/lscache/lscwp/general/#guest-mode' ); ?>
				<br /><?php Doc::notice_htaccess(); ?>
				<br /><?php Doc::crawler_affected(); ?>
			</div>
			<?php if ( $this->conf( $id ) ) : ?>
				<div class="litespeed-desc">
					<?php echo __( 'Guest Mode testing result', 'litespeed-cache' ); ?>:
					<font id='litespeed_gm_status'><?php echo __( 'Testing', 'litespeed-cache' ); ?>...</font>
				</div>
				<script>
					(function ($) {
						jQuery(document).ready(function () {
							$.post( '<?php echo $guest_update_url; ?>', function(data){
								if ( data == '[]' || $data == '{"reload":"yes"}' ) {
									$('#litespeed_gm_status').html('<font class="litespeed-success"><?php echo __( 'Guest Mode passed testing.', 'litespeed-cache' ); ?></font>');
								}
								else {
									$('#litespeed_gm_status').html('<font class="litespeed-danger"><?php echo __( 'Guest Mode failed to test.', 'litespeed-cache' ); ?></font>');
								}
							}).fail( function(){
								$('#litespeed_gm_status').html('<font class="litespeed-danger"><?php echo __( 'Guest Mode failed to test.', 'litespeed-cache' ); ?></font>');
							})
						});
					})(jQuery);
				</script>
			<?php endif; ?>
		</td>
	</tr>

settings_tuning.tpl.php000064400000002511151542375100011301 0ustar00<?php
namespace LiteSpeed;
defined( 'WPINC' ) || exit;

$this->form_action();
?>
<h3 class="litespeed-title-short">
	<?php echo __( 'Tuning Settings', 'litespeed-cache' ); ?>
	<?php Doc::learn_more( 'https://docs.litespeedtech.com/lscache/lscwp/general/#tuning-tab' ); ?>
</h3>

<table class="wp-list-table striped litespeed-table"><tbody>
	<tr>
		<th>
			<?php $id = Base::O_GUEST_UAS; ?>
			<?php $this->title( $id ); ?>
		</th>
		<td>
			<div class="litespeed-textarea-recommended">
				<div>
					<?php $this->build_textarea( $id, 30 ); ?>
				</div>
				<div>
					<?php $this->recommended( $id ); ?>
				</div>
			</div>

			<div class="litespeed-desc">
				<?php echo __( 'Listed User Agents will be considered as Guest Mode visitors.', 'litespeed-cache' ); ?>
				<?php Doc::one_per_line(); ?>
			</div>
		</td>
	</tr>

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

			<div class="litespeed-desc">
				<?php echo __( 'Listed IPs will be considered as Guest Mode visitors.', 'litespeed-cache' ); ?>
				<?php Doc::one_per_line(); ?>
			</div>
		</td>
	</tr>
</tbody></table>

<?php $this->form_end(); ?>