HEX
Server: Apache/2.4.65 (Debian)
System: Linux 88f31f35b0b8 6.1.0-38-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.147-1 (2025-08-02) x86_64
User: www-data (33)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/breeze/views/option-tabs/preload-tab.php
<?php
/**
 * Basic tab
 */
if ( ! defined( 'ABSPATH' ) ) {
	header( 'Status: 403 Forbidden' );
	header( 'HTTP/1.1 403 Forbidden' );
	exit;
}

set_as_network_screen();

$is_custom = false;
if ( ( ! defined( 'WP_NETWORK_ADMIN' ) || ( defined( 'WP_NETWORK_ADMIN' ) && false === WP_NETWORK_ADMIN ) ) && is_multisite() ) {
	$get_inherit = get_option( 'breeze_inherit_settings', '1' );
	$is_custom   = filter_var( $get_inherit, FILTER_VALIDATE_BOOLEAN );
}

$options = breeze_get_option( 'preload_settings', true );

$icon = BREEZE_PLUGIN_URL . 'assets/images/preload-active.png';
?>
<form data-section="preload">
	<?php if ( true === $is_custom ) { ?>
		<div class="br-overlay-disable"><?php esc_html_e( 'Settings are inherited', 'breeze' ); ?></div>
	<?php } ?>

    <?php
    Breeze_One_Click_Optimization::one_click_optimization_notice();
    ?>

	<section>
		<div class="br-section-title">
			<img src="<?php echo esc_url( $icon ); ?>"/>
			<?php esc_html_e( 'PRELOAD', 'breeze' ); ?>
		</div>

		<!-- START OPTION -->
		<div class="br-option-item">
			<div class="br-label">
				<div class="br-option-text">
					<?php esc_html_e( 'Preload Webfont', 'breeze' ); ?>
				</div>
			</div>
			<div class="br-option">
				<div class="breeze-list-url">
					<?php if ( ! empty( $options['breeze-preload-fonts'] ) ) : ?>
						<?php foreach ( $options['breeze-preload-fonts'] as $font_url ) : ?>
							<div class="breeze-input-group">
								<input type="text" size="98"
									   class="breeze-input-url"
									   name="breeze-preload-font[]"
									   placeholder="<?php esc_attr_e( 'Enter Font/CSS URL...', 'breeze' ); ?>"
									   value="<?php echo esc_html( $font_url ); ?>"/>
								<span class="sort-handle">
										<span class="dashicons dashicons-arrow-up moveUp"></span>
										<span class="dashicons dashicons-arrow-down moveDown"></span>
									</span>
								<span class="dashicons dashicons-no item-remove" title="<?php esc_attr_e( 'Remove', 'breeze' ); ?>"></span>
							</div>
						<?php endforeach; ?>
					<?php else : ?>
						<div class="breeze-input-group">
							<input type="text" size="98"
								   class="breeze-input-url"
								   id="breeze-preload-font"
								   name="breeze-preload-font[]"
								   placeholder="<?php esc_attr_e( 'Enter Font/CSS URL...', 'breeze' ); ?>"
								   value=""/>
							<span class="sort-handle">
									<span class="dashicons dashicons-arrow-up moveUp"></span>
									<span class="dashicons dashicons-arrow-down moveDown"></span>
								</span>
							<span class="dashicons dashicons-no item-remove" title="<?php esc_attr_e( 'Remove', 'breeze' ); ?>"></span>
						</div>
					<?php endif; ?>
				</div>
				<div style="margin: 10px 0">
					<button type="button" class="br-blue-button-reverse add-url" id="add-breeze-preload-fonts">
						<?php esc_html_e( 'Add URL', 'breeze' ); ?>
					</button>
				</div>
				<div class="br-note">
					<p>
						<?php

						esc_html_e( 'Specify the local font URL or the URL for the CSS file which loads only fonts. Load WOFF formats fonts for the best performance. Do not preload the whole website CSS file as it will slow down your website. Do not add Google Fonts links as those already use preload.', 'breeze' );
						?>
						<br/>
						<?php
						$theme_url = get_template_directory_uri() . '/assets/fonts/my-font.woff';
						echo '<strong>';
						esc_html_e( 'Example:', 'breeze' );
						echo '</strong>';
						echo ' ' . esc_url( $theme_url );
						?>
					</p>

				</div>
			</div>
		</div>
		<!-- END OPTION -->

		<!-- START OPTION -->
		<div class="br-option-item">
			<div class="br-label">
				<div class="br-option-text">
					<?php esc_html_e( 'Preload Links', 'breeze' ); ?>
				</div>
			</div>
			<div class="br-option">
				<?php
				$basic_value = isset( $options['breeze-preload-links'] ) ? filter_var( $options['breeze-preload-links'], FILTER_VALIDATE_BOOLEAN ) : false;
				$is_enabled  = ( isset( $basic_value ) && true === $basic_value ) ? checked( $options['breeze-preload-links'], '1', false ) : '';
				?>
				<div class="on-off-checkbox">
					<label class="br-switcher asd">
						<input id="preload-links" name="preload-links" type="checkbox" class="br-box" value="1" <?php echo esc_attr( $is_enabled ); ?>>
						<div class="br-see-state">
						</div>
					</label><br>
				</div>

				<div class="br-note">
					<p>
						<?php

						esc_html_e( 'When users hover over links, the cache is created in advance. The page will load faster upon link visiting.', 'breeze' );
						?>
					</p>
					<p class="br-important">
						<?php
						echo '<strong>';
						esc_html_e( 'Important: ', 'breeze' );
						echo '</strong>';
						esc_html_e( 'This feature is supported by Chromium based browsers (Chrome, Opera, Microsoft Edge Chromimum, Brave...);', 'breeze' );
						?>
					</p>
				</div>
			</div>
		</div>
		<!-- END OPTION -->

		<!-- START OPTION -->
		<div class="br-option-item">
			<div class="br-label">
				<div class="br-option-text">
					<?php esc_html_e( 'Prefetch of DNS Request', 'breeze' ); ?>
				</div>
			</div>
			<div class="br-option">
				<p>
					<?php esc_html_e( 'Specify domain URLs, one per line', 'breeze' ); ?>
				</p>
				<?php
				$prefetch_domain_list = true;

				if ( isset( $options['breeze-prefetch-urls'] ) && ! empty( $options['breeze-prefetch-urls'] ) ) {
					$prefetch_domain_list = breeze_validate_urls( $options['breeze-prefetch-urls'] );
				}


				$domains_output = '';
				if ( ! empty( $options['breeze-prefetch-urls'] ) ) {
					$output         = implode( "\n", $options['breeze-prefetch-urls'] );
					$domains_output = esc_textarea( $output );
				}

				$placeholder_never_cache_url = '//demo.com';
				?>
				<textarea cols="100" rows="7" id="br-prefetch-urls" name="br-prefetch-urls" placeholder="<?php echo esc_attr( $placeholder_never_cache_url ); ?>"><?php echo esc_textarea( $domains_output ); ?></textarea>
				<div class="br-note">
					<p>
						<?php

						esc_html_e( 'Third-party content load will be optimized if we prefetch the domains.', 'breeze' );
						?>
					</p>
					<?php if ( false === $prefetch_domain_list ) { ?>
						<p class="br-notice">
							<?php esc_html_e( 'One (or more) URL is invalid. Please check and correct the entry.', 'breeze' ); ?>
						</p>
					<?php } ?>
				</div>
			</div>
		</div>
		<!-- END OPTION -->
	</section>
	<div class="br-submit">
		<input type="submit" value="<?php echo esc_attr_e( 'Save Changes', 'breeze' ); ?>" class="br-submit-save"/>
	</div>
</form>