71 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
namespace W3TC;
 | 
						|
 | 
						|
if ( ! defined( 'W3TC' ) ) {
 | 
						|
	die();
 | 
						|
}
 | 
						|
?>
 | 
						|
<form action="admin.php?page=w3tc_cdn" method="post" style="padding: 20px" class="w3tc_cdn_highwinds_form">
 | 
						|
	<?php
 | 
						|
	if ( ! empty( $details['error_message'] ) ) {
 | 
						|
		echo '<div class="error">' . esc_html( $details['error_message'] ) . '</div>';
 | 
						|
	}
 | 
						|
	?>
 | 
						|
	<div class="metabox-holder">
 | 
						|
		<?php
 | 
						|
		Util_Ui::postbox_header(
 | 
						|
			wp_kses(
 | 
						|
				sprintf(
 | 
						|
					// translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
 | 
						|
					__(
 | 
						|
						'%1$sCNAME%2$ss to use',
 | 
						|
						'w3-total-cache'
 | 
						|
					),
 | 
						|
					'<acronym title="' . esc_attr__( 'Canonical Name', 'w3-total-cache' ) . '">',
 | 
						|
					'</acronym>'
 | 
						|
				),
 | 
						|
				array(
 | 
						|
					'acronym' => array(
 | 
						|
						'title' => array(),
 | 
						|
					),
 | 
						|
				)
 | 
						|
			)
 | 
						|
		);
 | 
						|
		?>
 | 
						|
		<?php
 | 
						|
		$cname_class = 'w3tc-ignore-change';
 | 
						|
		require W3TC_INC_DIR . '/options/cdn/common/cnames.php';
 | 
						|
		?>
 | 
						|
		<p class="description">
 | 
						|
			<?php
 | 
						|
			echo wp_kses(
 | 
						|
				sprintf(
 | 
						|
					// translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag,
 | 
						|
					// translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
 | 
						|
					__(
 | 
						|
						'Enter hostname mapped to %1$sCDN%2$s host, this value will replace your site\'s hostname in the %3$sHTML%4$s.',
 | 
						|
						'w3-total-cache'
 | 
						|
					),
 | 
						|
					'<acronym title="' . esc_attr__( 'Content Delivery Network', 'w3-total-cache' ) . '">',
 | 
						|
					'</acronym>',
 | 
						|
					'<acronym title="' . esc_attr__( 'Hypertext Markup Language', 'w3-total-cache' ) . '">',
 | 
						|
					'</acronym>'
 | 
						|
				),
 | 
						|
				array(
 | 
						|
					'acronym' => array(
 | 
						|
						'title' => array(),
 | 
						|
					),
 | 
						|
				)
 | 
						|
			);
 | 
						|
			?>
 | 
						|
		</p>
 | 
						|
 | 
						|
		<p class="submit">
 | 
						|
			<input type="button"
 | 
						|
				class="w3tc_cdn_highwinds_configure_cnames w3tc-button-save button-primary"
 | 
						|
				value="<?php esc_attr_e( 'Apply', 'w3-total-cache' ); ?>" />
 | 
						|
		</p>
 | 
						|
		<?php Util_Ui::postbox_footer(); ?>
 | 
						|
	</div>
 | 
						|
</form>
 |