| Server IP : 77.50.203.18 / Your IP : 192.168.0.10 Web Server : Apache/2.4.62 (CentOS Stream) OpenSSL/3.5.7 mpm-itk/2.4.7-04 PHP/8.4.23 System : Linux web2 5.14.0-722.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Jul 6 09:07:51 UTC 2026 x86_64 User : warsnews.ru ( 1001) PHP Version : 8.4.23 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/ifwar.ru/www/wp-content/plugins/clever-fox/inc/appointo/features/ |
Upload File : |
<?php
if ( ! defined( 'ABSPATH' ) ) exit;
function gradiant_slider_setting( $wp_customize ) {
$selective_refresh = isset( $wp_customize->selective_refresh ) ? 'postMessage' : 'refresh';
$cleverfox_theme = wp_get_theme(); // gets the current theme
/*=========================================
Slider Section Panel
=========================================*/
$wp_customize->add_panel(
'gradiant_frontpage_sections', array(
'priority' => 32,
'title' => esc_html__( 'Homepage Sections', 'clever-fox' ),
)
);
$wp_customize->add_section(
'slider_setting', array(
'title' => esc_html__( 'Slider Section', 'clever-fox' ),
'panel' => 'gradiant_frontpage_sections',
'priority' => 1,
)
);
// Setting Head
$wp_customize->add_setting(
'slider_setting_head'
,array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'gradiant_sanitize_text',
'priority' => 1,
)
);
$wp_customize->add_control(
'slider_setting_head',
array(
'type' => 'hidden',
'label' => __('Setting','clever-fox'),
'section' => 'slider_setting',
)
);
// Hide / Show
$wp_customize->add_setting(
'slider_hs'
,array(
'default' => '1',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'gradiant_sanitize_checkbox',
'priority' => 1,
)
);
$wp_customize->add_control(
'slider_hs',
array(
'type' => 'checkbox',
'label' => __('Hide / Show','clever-fox'),
'section' => 'slider_setting',
)
);
// slider Contents
$wp_customize->add_setting(
'slider_content_head'
,array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'gradiant_sanitize_text',
'priority' => 4,
)
);
$wp_customize->add_control(
'slider_content_head',
array(
'type' => 'hidden',
'label' => __('Contents','clever-fox'),
'section' => 'slider_setting',
)
);
/**
* Customizer Repeater for add slides
*/
$wp_customize->add_setting( 'slider',
array(
'sanitize_callback' => 'gradiant_repeater_sanitize',
'priority' => 5,
'default' => gradiant_get_slider_default()
)
);
if ( 'Comoxa' == $cleverfox_theme->name){
$wp_customize->add_control(
new Gradiant_Repeater( $wp_customize,
'slider',
array(
'label' => esc_html__('Slide','clever-fox'),
'section' => 'slider_setting',
'add_field_label' => esc_html__( 'Add New Slider', 'clever-fox' ),
'item_name' => esc_html__( 'Slider', 'clever-fox' ),
'customizer_repeater_title_control' => true,
'customizer_repeater_subtitle_control' => true,
'customizer_repeater_subtitle2_control' => true,
'customizer_repeater_text_control' => true,
'customizer_repeater_text2_control'=> true,
'customizer_repeater_link_control' => true,
'customizer_repeater_slide_align' => true,
'customizer_repeater_checkbox_control' => true,
'customizer_repeater_image_control' => true,
'customizer_repeater_image2_control' => true,
)
)
);
}else{
$wp_customize->add_control(
new Gradiant_Repeater( $wp_customize,
'slider',
array(
'label' => esc_html__('Slide','clever-fox'),
'section' => 'slider_setting',
'add_field_label' => esc_html__( 'Add New Slider', 'clever-fox' ),
'item_name' => esc_html__( 'Slider', 'clever-fox' ),
'customizer_repeater_title_control' => true,
'customizer_repeater_subtitle_control' => true,
'customizer_repeater_subtitle2_control' => true,
'customizer_repeater_text_control' => true,
'customizer_repeater_text2_control'=> true,
'customizer_repeater_link_control' => true,
'customizer_repeater_slide_align' => true,
'customizer_repeater_checkbox_control' => true,
'customizer_repeater_image_control' => true,
)
)
);
}
//Pro feature
class Gradiant_slider__section_upgrade extends WP_Customize_Control {
public function render_content() { ?>
<a class="customizer_slider_upgrade_section up-to-pro" href="https://www.nayrathemes.com/gradiant-pro/" target="_blank" style="display: none;"><?php esc_html_e('Upgrade to Pro','clever-fox'); ?></a>
<?php
}
}
$wp_customize->add_setting( 'gradiant_slider_upgrade_to_pro', array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'wp_filter_nohtml_kses',
'priority' => 5,
));
$wp_customize->add_control(
new Gradiant_slider__section_upgrade(
$wp_customize,
'gradiant_slider_upgrade_to_pro',
array(
'section' => 'slider_setting',
)
)
);
// slider opacity
$overlay_color = '0.6';
if ( 'Comoxa' == $cleverfox_theme->name){
$overlay_color = '0';
}
if ( class_exists( 'Cleverfox_Customizer_Range_Slider_Control' ) ) {
$wp_customize->add_setting(
'slider_opacity',
array(
'default' => $overlay_color,
'capability' => 'edit_theme_options',
//'sanitize_callback' => 'gradiant_sanitize_range_value',
'priority' => 7,
)
);
$wp_customize->add_control(
new Cleverfox_Customizer_Range_Slider_Control( $wp_customize, 'slider_opacity',
array(
'label' => __( 'opacity', 'clever-fox' ),
'section' => 'slider_setting',
'input_attrs' => array(
'min' => 0,
'max' => 0.9,
'step' => 0.1,
//'suffix' => 'px', //optional suffix
),
) )
);
}
}
add_action( 'customize_register', 'gradiant_slider_setting' );