| 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/renoval/features/ |
Upload File : |
<?php
if ( ! defined( 'ABSPATH' ) ) exit;
function renoval_cta_setting( $wp_customize ) {
$selective_refresh = isset( $wp_customize->selective_refresh ) ? 'postMessage' : 'refresh';
/*=========================================
CTA Section
=========================================*/
$wp_customize->add_section(
'cta_setting', array(
'title' => esc_html__( 'Call to Action Section', 'clever-fox' ),
'priority' => 6,
'panel' => 'renoval_frontpage_sections',
)
);
//Cta Documentation Link
class cleverfox_wp_cta_Customize_Control extends WP_Customize_Control {
public $type = 'new_menu';
function render_content()
{
?>
<h3><?php esc_html_e('Section Documentation','clever-fox'); ?></h3>
<p><a href="https://help.nayrathemes.com/premium-themes/renoval-pro/call-to-action-section-setup/" target="_blank" style="background-color:#fcb900; color:#fff;display: flex;align-items: center;justify-content: center;text-decoration: none; font-weight: 600;padding: 15px 10px;"><?php esc_html_e('Click Here','clever-fox'); ?></a></p>
<?php
}
}
// Cta Doc Link //
$wp_customize->add_setting(
'cta_doc_link' ,
array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_text_field',
)
);
$wp_customize->add_control(new cleverfox_wp_cta_Customize_Control($wp_customize,
'cta_doc_link' ,
array(
'label' => __( 'Cta Documentation Link', 'clever-fox' ),
'section' => 'cta_setting',
'type' => 'radio',
'description' => __( 'Cta Documentation Link', 'clever-fox' ),
)
) );
// CTA Call Section //
$wp_customize->add_setting(
'cta_call_contents'
,array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'renoval_sanitize_text',
'priority' => 1,
)
);
$wp_customize->add_control(
'cta_call_contents',
array(
'type' => 'hidden',
'label' => __('Left Content','clever-fox'),
'section' => 'cta_setting',
)
);
// icon //
$wp_customize->add_setting(
'cta_call_icon',
array(
'default' => 'fa-user',
'sanitize_callback' => 'sanitize_text_field',
'capability' => 'edit_theme_options',
'priority' => 1,
)
);
$wp_customize->add_control(new Renoval_Icon_Picker_Control($wp_customize,
'cta_call_icon',
array(
'label' => __('Icon','clever-fox'),
'section' => 'cta_setting',
'iconset' => 'fa',
))
);
// CTA Call Title //
$wp_customize->add_setting(
'cta_call_title',
array(
'default' => __('Contact Us','clever-fox'),
'capability' => 'edit_theme_options',
'sanitize_callback' => 'renoval_sanitize_html',
'transport' => $selective_refresh,
'priority' => 2,
)
);
$wp_customize->add_control(
'cta_call_title',
array(
'label' => __('Title','clever-fox'),
'section' => 'cta_setting',
'type' => 'text',
)
);
// CTA Call Text //
$wp_customize->add_setting(
'cta_call_text',
array(
'default' => __('+70 975 975 70','clever-fox'),
'capability' => 'edit_theme_options',
'sanitize_callback' => 'renoval_sanitize_html',
'transport' => $selective_refresh,
'priority' => 2,
)
);
$wp_customize->add_control(
'cta_call_text',
array(
'label' => __('Text','clever-fox'),
'section' => 'cta_setting',
'type' => 'text',
)
);
// CTA Content Section //
$wp_customize->add_setting(
'cta_contents'
,array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'renoval_sanitize_text',
'priority' => 3,
)
);
$wp_customize->add_control(
'cta_contents',
array(
'type' => 'hidden',
'label' => __('Right Content','clever-fox'),
'section' => 'cta_setting',
)
);
// icon //
$wp_customize->add_setting(
'cta_right_icon',
array(
'default' => 'fa-phone',
'sanitize_callback' => 'sanitize_text_field',
'capability' => 'edit_theme_options',
'priority' => 4,
)
);
$wp_customize->add_control(new Renoval_Icon_Picker_Control($wp_customize,
'cta_right_icon',
array(
'label' => __('Icon','clever-fox'),
'section' => 'cta_setting',
'iconset' => 'fa',
))
);
// CTA Title //
$wp_customize->add_setting(
'cta_title',
array(
'default' => __('Do You Want to Renovate Your Home & Office?','clever-fox'),
'capability' => 'edit_theme_options',
'sanitize_callback' => 'renoval_sanitize_html',
'transport' => $selective_refresh,
'priority' => 4,
)
);
$wp_customize->add_control(
'cta_title',
array(
'label' => __('Title','clever-fox'),
'section' => 'cta_setting',
'type' => 'text',
)
);
// CTA Description //
$wp_customize->add_setting(
'cta_description',
array(
'default' => __('Protecting Your Home From Damaging Leaks, Contact us.','clever-fox'),
'capability' => 'edit_theme_options',
'sanitize_callback' => 'renoval_sanitize_html',
'transport' => $selective_refresh,
'priority' => 6,
)
);
$wp_customize->add_control(
'cta_description',
array(
'label' => __('Description','clever-fox'),
'section' => 'cta_setting',
'type' => 'textarea',
)
);
// Button //
$wp_customize->add_setting(
'cta_btn'
,array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'renoval_sanitize_text',
'priority' => 7,
)
);
$wp_customize->add_control(
'cta_btn',
array(
'type' => 'hidden',
'label' => __('Button','clever-fox'),
'section' => 'cta_setting',
)
);
// icon //
$wp_customize->add_setting(
'cta_btn_icon',
array(
'default' => 'fa-arrow-right',
'sanitize_callback' => 'sanitize_text_field',
'capability' => 'edit_theme_options',
'priority' => 8,
)
);
$wp_customize->add_control(new Renoval_Icon_Picker_Control($wp_customize,
'cta_btn_icon',
array(
'label' => __('Icon','clever-fox'),
'section' => 'cta_setting',
'iconset' => 'fa',
))
);
$wp_customize->add_setting(
'cta_btn_lbl',
array(
'default' => __('Apply Now','clever-fox'),
'capability' => 'edit_theme_options',
'sanitize_callback' => 'renoval_sanitize_html',
'transport' => $selective_refresh,
'priority' => 8,
)
);
$wp_customize->add_control(
'cta_btn_lbl',
array(
'label' => __('Button Label','clever-fox'),
'section' => 'cta_setting',
'type' => 'text',
)
);
$wp_customize->add_setting(
'cta_btn_link',
array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'renoval_sanitize_url',
'priority' => 9,
)
);
$wp_customize->add_control(
'cta_btn_link',
array(
'label' => __('Link','clever-fox'),
'section' => 'cta_setting',
'type' => 'text',
)
);
// CTA Background //
$wp_customize->add_setting(
'cta_bg_head'
,array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'renoval_sanitize_text',
'priority' => 13,
)
);
$wp_customize->add_control(
'cta_bg_head',
array(
'type' => 'hidden',
'label' => __('Background','clever-fox'),
'section' => 'cta_setting',
)
);
$wp_customize->add_setting(
'cta_logo_image' ,
array(
'default' => esc_url(plugin_dir_url( dirname(__FILE__) ) .'images/cta/cta-logo.png'),
'capability' => 'edit_theme_options',
'sanitize_callback' => 'renoval_sanitize_url',
'priority' => 14,
)
);
$wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize , 'cta_logo_image' ,
array(
'label' => __( 'Logo Image', 'clever-fox' ),
'section' => 'cta_setting',
)
));
$wp_customize->add_setting(
'cta_bg_setting' ,
array(
'default' => esc_url(plugin_dir_url( dirname(__FILE__) ) .'images/cta/cta-bg.jpg'),
'capability' => 'edit_theme_options',
'sanitize_callback' => 'renoval_sanitize_url',
'priority' => 14,
)
);
$wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize , 'cta_bg_setting' ,
array(
'label' => __( 'Background Image', 'clever-fox' ),
'section' => 'cta_setting',
)
));
$wp_customize->add_setting(
'cta_bg_position' ,
array(
'default' => 'fixed',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'renoval_sanitize_select',
'priority' => 15,
)
);
$wp_customize->add_control(
'cta_bg_position' ,
array(
'label' => __( 'Image Position', 'clever-fox' ),
'section' => 'cta_setting',
'type' => 'radio',
'choices' =>
array(
'fixed'=> __( 'Fixed', 'clever-fox' ),
'scroll' => __( 'Scroll', 'clever-fox' )
)
)
);
}
add_action( 'customize_register', 'renoval_cta_setting' );
// CTA selective refresh
function renoval_ata_section_partials( $wp_customize ){
// cta_right_icon
$wp_customize->selective_refresh->add_partial( 'cta_right_icon', array(
'selector' => '.cta-button a i',
'settings' => 'cta_right_icon',
'render_callback' => 'renoval_cta_call_title_render_callback',
) );
// cta_call_title
$wp_customize->selective_refresh->add_partial( 'cta_call_title', array(
'selector' => '.cta-button a span',
'settings' => 'cta_call_title',
'render_callback' => 'renoval_cta_call_title_render_callback',
) );
// cta_call_text
$wp_customize->selective_refresh->add_partial( 'cta_call_text', array(
'selector' => '.cta-button a',
'settings' => 'cta_call_text',
'render_callback' => 'renoval_cta_call_text_render_callback',
) );
// cta_title
$wp_customize->selective_refresh->add_partial( 'cta_title', array(
'selector' => '.cta-content h5',
'settings' => 'cta_title',
'render_callback' => 'renoval_cta_title_render_callback',
) );
// cta_description
$wp_customize->selective_refresh->add_partial( 'cta_description', array(
'selector' => '.cta-content p',
'settings' => 'cta_description',
'render_callback' => 'renoval_cta_description_render_callback',
) );
// cta_btn_lbl
$wp_customize->selective_refresh->add_partial( 'cta_btn_lbl', array(
'selector' => '.home-cta .cta-btn a',
'settings' => 'cta_btn_lbl',
'render_callback' => 'renoval_cta_btn_lbl_render_callback',
) );
}
add_action( 'customize_register', 'renoval_ata_section_partials' );
// cta_title
function renoval_cta_title_render_callback() {
return get_theme_mod( 'cta_title' );
}
// cta_description
function renoval_cta_description_render_callback() {
return get_theme_mod( 'cta_description' );
}
// cta_btn_lbl
function renoval_cta_btn_lbl_render_callback() {
return get_theme_mod( 'cta_btn_lbl' );
}
// cta_call_title
function renoval_cta_call_title_render_callback() {
return get_theme_mod( 'cta_call_title' );
}
// cta_call_text
function renoval_cta_call_text_render_callback() {
return get_theme_mod( 'cta_call_text' );
}