PATH:
home
/
letacommog
/
aperobusiness
/
wp-content
/
plugins
/
wp-rocket
/
views
/
settings
/
fields
<?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' ) || die( 'Cheatin’ uh?' ); ?> <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 $data['title']; ?> </div> <?php endif; ?> <?php if ( ! empty( $data['description'] ) ) : ?> <div class="wpr-field-description"> <?php echo $data['description']; ?> </div> <?php endif; ?> </div> </div> </div> </fieldset>
[+]
..
[-] one-click-addon.php
[edit]
[-] number.php
[edit]
[-] textarea.php
[edit]
[-] select.php
[edit]
[-] import-form.php
[edit]
[-] rocket-addon.php
[edit]
[-] checkbox.php
[edit]
[-] cache-lifespan.php
[edit]
[-] text.php
[edit]
[-] cnames.php
[edit]
[-] sliding-checkbox.php
[edit]
[-] hidden.php
[edit]