File: /var/www/PluginBackup/burger-companion/inc/spintech/features/spintech-info.php
<?php
function spintech_info_setting( $wp_customize ) {
$selective_refresh = isset( $wp_customize->selective_refresh ) ? 'postMessage' : 'refresh';
/*=========================================
Info Section
=========================================*/
$wp_customize->add_section(
'info_setting', array(
'title' => esc_html__( 'Info Section', 'spintech' ),
'priority' => 3,
'panel' => 'spintech_frontpage_sections',
)
);
// Info Settings Section //
$wp_customize->add_setting(
'info_setting_head'
,array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'spintech_sanitize_text',
'priority' => 5,
)
);
$wp_customize->add_control(
'info_setting_head',
array(
'type' => 'hidden',
'label' => __('Settings','spintech'),
'section' => 'info_setting',
)
);
// hide/show
$wp_customize->add_setting(
'hs_info' ,
array(
'default' => '1',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'spintech_sanitize_checkbox',
'transport' => $selective_refresh,
'priority' => 6,
)
);
$wp_customize->add_control(
'hs_info',
array(
'label' => esc_html__( 'Hide/Show', 'spintech' ),
'section' => 'info_setting',
'type' => 'checkbox',
)
);
// Info content Section //
$wp_customize->add_setting(
'info_content_head'
,array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'spintech_sanitize_text',
'priority' => 7,
)
);
$wp_customize->add_control(
'info_content_head',
array(
'type' => 'hidden',
'label' => __('Content','spintech'),
'section' => 'info_setting',
)
);
/**
* Customizer Repeater for add info
*/
$wp_customize->add_setting( 'info_contents',
array(
'sanitize_callback' => 'burger_companion_repeater_sanitize',
'transport' => $selective_refresh,
'priority' => 8,
'default' => spintech_get_info_default()
)
);
$wp_customize->add_control(
new Burger_Companion_Repeater( $wp_customize,
'info_contents',
array(
'label' => esc_html__('Information','spintech'),
'section' => 'info_setting',
'add_field_label' => esc_html__( 'Add New Information', 'spintech' ),
'item_name' => esc_html__( 'Information', 'spintech' ),
'customizer_repeater_icon_control' => true,
'customizer_repeater_image_control' => true,
'customizer_repeater_title_control' => true,
'customizer_repeater_text_control' => true,
)
)
);
//Pro feature
class Spintech_info_section_upgrade extends WP_Customize_Control {
public function render_content() {
$theme = wp_get_theme(); // gets the current theme
if ( 'ITpress' == $theme->name){
?>
<a class="customizer_spintech_info_upgrade_section up-to-pro" href="https://burgerthemes.com/itpress-pro/" target="_blank" style="display: none;"><?php _e('More Info Available in ITpress Pro','spintech'); ?></a>
<?php }elseif ( 'KitePress' == $theme->name){ ?>
<a class="customizer_spintech_info_upgrade_section up-to-pro" href="https://burgerthemes.com/kitepress-pro/" target="_blank" style="display: none;"><?php _e('More Info Available in KitePress Pro','spintech'); ?></a>
<?php }elseif ( 'SpinSoft' == $theme->name){ ?>
<a class="customizer_spintech_info_upgrade_section up-to-pro" href="https://burgerthemes.com/spinsoft-pro/" target="_blank" style="display: none;"><?php _e('More Info Available in SpinSoft Pro','spintech'); ?></a>
<?php }elseif ( 'Maxtech' == $theme->name){ ?>
<a class="customizer_spintech_info_upgrade_section up-to-pro" href="https://burgerthemes.com/maxtech-pro/" target="_blank" style="display: none;"><?php _e('More Info Available in Maxtech Pro','spintech'); ?></a>
<?php }elseif ( 'Softura' == $theme->name){ ?>
<a class="customizer_spintech_info_upgrade_section up-to-pro" href="https://burgerthemes.com/softura-pro/" target="_blank" style="display: none;"><?php _e('More Info Available in Softura Pro','spintech'); ?></a>
<?php }else{ ?>
<a class="customizer_spintech_info_upgrade_section up-to-pro" href="https://burgerthemes.com/spintech-pro/" target="_blank" style="display: none;"><?php _e('More Info Available in Spintech Pro','spintech'); ?></a>
<?php
}
}
}
$wp_customize->add_setting( 'spintech_info_upgrade_to_pro', array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'wp_filter_nohtml_kses',
));
$wp_customize->add_control(
new Spintech_info_section_upgrade(
$wp_customize,
'spintech_info_upgrade_to_pro',
array(
'section' => 'info_setting',
)
)
);
}
add_action( 'customize_register', 'spintech_info_setting' );
// info selective refresh
function spintech_home_info_section_partials( $wp_customize ){
// hs_info
$wp_customize->selective_refresh->add_partial(
'hs_info', array(
'selector' => '.info-section',
'container_inclusive' => true,
'render_callback' => 'info_setting',
'fallback_refresh' => true,
)
);
// info content
$wp_customize->selective_refresh->add_partial( 'info_contents', array(
'selector' => '.info-section .info-wrapper'
) );
}
add_action( 'customize_register', 'spintech_home_info_section_partials' );