Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
malacoscolicine
/
dev2024_old_skip
/
wp-content
/
themes
/
hestia
/
inc
/
admin
/
metabox
/
controls
:
class-hestia-metabox-checkbox.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Metabox radio button control. * * @package Hestia */ /** * Class Checkbox * * @package Hestia */ class Hestia_Metabox_Checkbox extends Hestia_Metabox_Control_Base { /** * Control type. * * @var string */ public $type = 'checkbox'; /** * Render control. * * @param string $post_id the post id. * * @return void */ public function render_content( $post_id ) { $value = $this->get_value( $post_id ); $markup = ''; $show_notice = 'show' === $this->settings['show_notice']; $label_opicity = $show_notice ? 'opacity: .7;' : ''; $markup .= '<p>'; $markup .= '<div class="checkbox-toggle-wrap">'; $markup .= '<label for="' . esc_attr( $this->id ) . '" style="' . esc_attr( $label_opicity ) . '">'; $markup .= '<input type="checkbox" id="' . esc_attr( $this->id ) . '" name="' . esc_attr( $this->id ) . '" ' . ''; if ( $value === 'on' ) { $markup .= ' checked="checked" '; } if ( $show_notice ) { $markup .= ' disabled="disabled" '; } $markup .= '/>'; $markup .= esc_html( $this->settings['input_label'] ) . '</label>'; if ( $show_notice && ! empty( $this->settings['upsell_data'] ) ) { // translators: %1$s field, %2$s upgrade link. $markup .= '<p class="notice notice-info" style="margin: 5px 0;">' . sprintf( __( 'Refine %1$s with <a href="%2$s" target="_blank">Hestia PRO!</a>', 'hestia' ), $this->settings['upsell_data']['text'], esc_url( tsdk_utmify( 'https://themeisle.com/themes/hestia-pro/upgrade/', $this->settings['upsell_data']['utm_tag'] ) ) ) . '</p>'; } $markup .= '</div>'; $markup .= '</p>'; echo $markup; } }