| Server IP : 130.225.57.55 / Your IP : 216.73.216.60 Web Server : Apache System : Linux wp-vhost07 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64 User : root ( 0) PHP Version : 8.1.2-1ubuntu2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /srv/www/reco2st.eu/https/wp-content/plugins/w3-total-cache/ |
Upload File : |
<?php
/**
* File: Cdnfsd_TransparentCDN_Page_View.php
*
* @package W3TC
*
* @since 0.15.0
*/
namespace W3TC;
defined( 'ABSPATH' ) || exit;
if ( ! defined( 'W3TC' ) ) {
die();
}
$w3tc_key = $w3tc_config->get_string( 'cdnfsd.transparentcdn.client_id' );
$w3tc_authorized = ! empty( $w3tc_key );
?>
<?php
Util_Ui::postbox_header( __( 'Configuration: Full-Site Delivery', 'w3-total-cache' ), '', 'configuration-fsd' );
?>
<table class="form-table">
<tr>
<th style="width: 300px;">
<label for="cdnfsd_transparentcdn_company_id"> <?php esc_html_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( $w3tc_config->get_string( 'cdnfsd.transparentcdn.company_id' ) ); ?>" size="60" />
</td>
</tr>
<tr>
<th style="width: 300px;"><label for="cdnfsd_transparentcdn_clientid"><?php esc_html_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( $w3tc_config->get_string( 'cdnfsd.transparentcdn.client_id' ) ); ?>" size="60" />
</td>
</tr>
<tr>
<th style="width: 300px;"><label for="cdnfsd_transparentcdn_clientsecret"><?php esc_html_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( $w3tc_config->get_string( 'cdnfsd.transparentcdn.client_secret' ) ); ?>" size="60" />
</td>
</tr>
<tr>
<td>
<span id="transparentcdn_test" class="button {type: 'transparentcdn', nonce: '<?php echo esc_attr( Util_Nonce::create_admin( 'w3tc_cdn_test' ) ); ?>'}">
<?php esc_html_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::postbox_footer(); ?>