| 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
/**
* One-click 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 URL.
* @type string $value Field value.
* }
*/
defined( 'ABSPATH' ) || exit;
?>
<fieldset class="wpr-fieldsContainer-fieldset">
<div class="wpr-field">
<div class="wpr-flex">
<h4 class="wpr-title3"><?php echo esc_html( $data['label'] ); ?></h4>
<?php
/**
* Filters the display of the input
*
* @since 3.0
* @author Remy Perona
*
* @param bool $display True to display, false otherwise.
*/
if ( apply_filters( 'rocket_display_input_' . $data['id'], true ) ) :
?>
<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>
<?php endif; ?>
</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; ?>
</div>
</div>
</div>
</fieldset>