HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux wordpress-ubuntu-s-2vcpu-4gb-fra1-01 5.4.0-169-generic #187-Ubuntu SMP Thu Nov 23 14:52:28 UTC 2023 x86_64
User: root (0)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/hcv/wp-content/plugins/w3-total-cache/Cdnfsd_TransparentCDN_Page_View.php
<?php
/**
 * File: Cdnfsd_TransparentCDN_Page_View.php
 *
 * @since 0.15.0
 */

namespace W3TC;

if ( !defined( 'W3TC' ) ) {
	die();
}

$key        = $config->get_string( 'cdnfsd.transparentcdn.client_id' );
$authorized = ! empty( $key );

?>
<form id="cdn_form" action="admin.php?page=w3tc_cdn" method="post">
	<div class="metabox-holder">
		<?php
		Util_Ui::postbox_header(
			__( 'Configuration: Full-Site Delivery', 'w3-total-cache' ),
			'',
			'configuration'
		);
		?>
	<table class="form-table">
		<tr>
			<th style="width: 300px;">
			<label for="cdnfsd_transparentcdn_company_id"> <?php _e( 'Company id:', 'w3-total-cache' ); ?> </label>
			</th>
			<td>
				<input id="cdnfsd_transparentcdn_company_id" class="w3tc-ignore-change" type="text"
				<?php Util_Ui::sealing_disabled( 'cdnfsd.transparentcdn.company_id' ) ?>
				name="cdnfsd__transparentcdn__company_id"
				value="<?php echo esc_attr( $config->get_string( 'cdnfsd.transparentcdn.company_id' ) ); ?>" size="60" />
			</td>
		</tr>
		<tr>
			<th style="width: 300px;"><label for="cdnfsd_transparentcdn_clientid"><?php _e( 'Client id:', 'w3-total-cache' ); ?></label></th>
			<td>
				<input id="cdnfsd_transparentcdn_clientid" class="w3tc-ignore-change"
				<?php Util_Ui::sealing_disabled( 'cdnfsd.transparentcdn.client_id' ) ?> type="text"
				name="cdnfsd__transparentcdn__client_id"
				value="<?php echo esc_attr( $config->get_string( 'cdnfsd.transparentcdn.client_id' ) ); ?>" size="60" />
			</td>
		</tr>
		<tr>
			<th style="width: 300px;"><label for="cdnfsd_transparentcdn_clientsecret"><?php _e( 'Client secret:', 'w3-total-cache' ); ?></label></th>
			<td>
				<input id="cdnfsd_transparentcdn_clientsecret" class="w3tc-ignore-change"
				<?php Util_Ui::sealing_disabled( 'cdnfsd.transparentcdn.client_secret' ) ?> type="text"
				name="cdnfsd__transparentcdn__client_secret"
				value="<?php echo esc_attr( $config->get_string( 'cdnfsd.transparentcdn.client_secret' ) ); ?>" size="60" />
			</td>
		</tr>
		<tr>
			<td>
				<span id="transparentcdn_test" class="button {type: 'transparentcdn', nonce: '<?php echo wp_create_nonce( 'w3tc' ); ?>'}">
					<?php _e( 'Test TransparentCDN', 'w3-total-cache' ); ?>
				</span>
			</td>
			<td colspan="1">
				<span id="tcdn_test_status" class="w3tc-status w3tc-process">
				</span>
			</td>
		</tr>
	</table>
		<?php Util_Ui::button_config_save( 'cdn_configuration' ); ?>
		<?php Util_Ui::postbox_footer(); ?>
	</div>
</form>