| 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/eduvert/features/ |
Upload File : |
<?php
if ( ! defined( 'ABSPATH' ) ) exit;
function eduvert_slider_setting( $wp_customize ) {
$selective_refresh = isset( $wp_customize->selective_refresh ) ? 'postMessage' : 'refresh';
/*=========================================
Slider Section Panel
=========================================*/
$wp_customize->add_section(
'slider_setting', array(
'title' => esc_html__( 'Slider Section', 'clever-fox' ),
'panel' => 'eduvert_frontpage_sections',
'priority' => 1,
)
);
// slider Contents
$wp_customize->add_setting(
'slider_content_head'
,array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'eduvert_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' => 'eduvert_repeater_sanitize',
'priority' => 5,
'default' => eduvert_get_slider_default()
)
);
$wp_customize->add_control(
new Eduvert_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_image_control' => true,
)
)
);
//Pro feature
class Eduvert_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/eduvert-pro/" target="_blank" style="display: none;"><?php esc_html_e('Upgrade to Pro','clever-fox'); ?></a>
<?php
}
}
$wp_customize->add_setting( 'eduvert_slider_upgrade_to_pro', array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'wp_filter_nohtml_kses',
'priority' => 5,
));
$wp_customize->add_control(
new Eduvert_slider__section_upgrade(
$wp_customize,
'eduvert_slider_upgrade_to_pro',
array(
'section' => 'slider_setting',
'settings' => 'eduvert_slider_upgrade_to_pro',
)
)
);
//Overlay Enable //
$wp_customize->add_setting(
'slider_overlay_enable' ,
array(
'default' => '1',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'eduvert_sanitize_checkbox',
'priority' => 6,
)
);
$wp_customize->add_control(
'slider_overlay_enable',
array(
'label' => esc_html__( 'Overlay Enable?', 'clever-fox' ),
'section' => 'slider_setting',
'type' => 'checkbox'
)
);
// Overlay Color
$wp_customize->add_setting(
'slide_overlay_color',
array(
'default' => '#1b575b',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_text_field',
'priority' => 8,
));
$wp_customize->add_control(
new WP_Customize_Color_Control
($wp_customize,
'slide_overlay_color',
array(
'label' => __( 'Overlay Color', 'clever-fox' ),
'section' => 'slider_setting'
)
)
);
//BG Element Enable //
$wp_customize->add_setting(
'slider_bg_element_enable' ,
array(
'default' => '1',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'eduvert_sanitize_checkbox',
'priority' => 8,
)
);
$wp_customize->add_control(
'slider_bg_element_enable',
array(
'label' => esc_html__( 'BG Element Enable?', 'clever-fox' ),
'section' => 'slider_setting',
'type' => 'checkbox'
)
);
}
add_action( 'customize_register', 'eduvert_slider_setting' );