| Server IP : 87.229.120.60 / Your IP : 216.73.216.245 Web Server : Apache System : Linux outside 5.4.8_Algonet_ZeroMAC_0.9.4.8 #6 SMP Mon Feb 3 20:36:07 CET 2020 x86_64 User : server ( 1002) PHP Version : 8.3.20 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,curl_multi_exec,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/faktorteam/www/wp-content/plugins/wp-rocket/views/settings/fields/ |
Upload File : |
<?php
/**
* Rocket add-on block template.
*
* @since 3.0
*
* @param array $data {
* Checkbox Field arguments.
*
* @type string $id Field identifier.
* @type string $label Add-on label.
* @type string $title Add-on title.
* @type string $description Add-on description.
* @type string $logo Add-on logo.
* @type string $value Field value.
* }
*/
defined( 'ABSPATH' ) || exit;
$rocket_settings_page = ! empty( $data['settings_page'] ) ? $data['settings_page'] : '';
?>
<fieldset class="wpr-fieldsContainer-fieldset">
<div class="wpr-field">
<div class="wpr-flex">
<h4 class="wpr-title3"><?php echo esc_html( $data['label'] ); ?></h4>
<div class="wpr-radio wpr-radio--reverse">
<input type="checkbox" id="<?php echo esc_attr( $data['id'] ); ?>" class="" name="wp_rocket_settings[<?php echo esc_attr( $data['id'] ); ?>]" value="1" <?php checked( $data['value'], 1 ); ?>>
<label for="<?php echo esc_attr( $data['id'] ); ?>" class="">
<span data-l10n-active="<?php echo esc_attr_x( 'On', 'Active state of checkbox', 'rocket' ); ?>"
data-l10n-inactive="<?php echo esc_attr_x( 'Off', 'Inactive state of checkbox', 'rocket' ); ?>" class="wpr-radio-ui"></span>
<?php esc_html_e( 'Add-on status', 'rocket' ); ?>
</label>
</div>
</div>
</div>
<div class="wpr-field wpr-addon">
<div class="wpr-flex">
<div class="wpr-addon-logo">
<img src="<?php echo esc_url( $data['logo']['url'] ); ?>" width="<?php echo esc_attr( $data['logo']['width'] ); ?>" height="<?php echo esc_attr( $data['logo']['height'] ); ?>" alt="">
</div>
<div class="wpr-addon-text">
<?php if ( ! empty( $data['title'] ) ) : ?>
<div class="wpr-addon-title">
<?php echo esc_attr( $data['title'] ); ?>
</div>
<?php endif; ?>
<?php if ( ! empty( $data['description'] ) ) : ?>
<div class="wpr-field-description">
<?php echo $data['description']; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Dynamic content is properly escaped in the view. ?>
</div>
<?php endif; ?>
<?php if ( $rocket_settings_page ) : ?>
<a href="#<?php echo esc_attr( $rocket_settings_page ); ?>" class="wpr-button wpr-button--small wpr-button--icon wpr-button--purple wpr-icon-chevron-right wpr-toggle-button wpr-<?php echo esc_attr( $rocket_settings_page ); ?>ToggleButton"><?php esc_html_e( 'Modify options', 'rocket' ); ?></a>
<?php endif; ?>
</div>
</div>
</div>
</fieldset>