| 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/eractor/features/ |
Upload File : |
<?php
if ( ! defined( 'ABSPATH' ) ) exit;
function renoval_eractor_header_settings( $wp_customize ) {
$selective_refresh = isset( $wp_customize->selective_refresh ) ? 'postMessage' : 'refresh';
/*=========================================
Above Header Section
=========================================*/
$wp_customize->add_section(
'above_header',
array(
'priority' => 2,
'title' => __('Header','clever-fox'),
'panel' => 'header_section',
)
);
/*=========================================
Contact
=========================================*/
$wp_customize->add_setting(
'hdr_top_contact'
,array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'renoval_sanitize_text',
'priority' => 3,
)
);
$wp_customize->add_control(
'hdr_top_contact',
array(
'type' => 'hidden',
'label' => __('Contact Address','clever-fox'),
'section' => 'above_header',
)
);
//Header Contact Details Documentation Link
class renoval_eractor_wp_cntct_details_section_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="#" 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
}
}
// Header Doc Link //
$wp_customize->add_setting(
'cntct_details_doc_link' ,
array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_text_field',
)
);
$wp_customize->add_control(new renoval_eractor_wp_cntct_details_section_Customize_Control($wp_customize,
'cntct_details_doc_link' ,
array(
'label' => __( 'Contact Details Documentation Link', 'clever-fox' ),
'section' => 'above_header',
'type' => 'radio',
'description' => __( 'Contact Details Documentation Link', 'clever-fox' ),
)
) );
$wp_customize->add_setting(
'hide_show_cntct_details' ,
array(
'default' => '1',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'renoval_sanitize_checkbox',
'priority' => 4,
)
);
$wp_customize->add_control(
'hide_show_cntct_details',
array(
'label' => esc_html__( 'Hide/Show', 'clever-fox' ),
'section' => 'above_header',
'type' => 'checkbox'
)
);
// icon //
$wp_customize->add_setting(
'tlh_contct_icon',
array(
'default' => 'fa-support',
'sanitize_callback' => 'sanitize_text_field',
'capability' => 'edit_theme_options',
)
);
$wp_customize->add_control(new Renoval_Icon_Picker_Control($wp_customize,
'tlh_contct_icon',
array(
'label' => __('Icon','clever-fox'),
'section' => 'above_header',
'iconset' => 'fa',
))
);
// Address //
$wp_customize->add_setting(
'tlh_contact_address',
array(
'default' => __('Contact Address','clever-fox'),
'sanitize_callback' => 'renoval_sanitize_text',
'capability' => 'edit_theme_options',
'priority' => 5,
)
);
$wp_customize->add_control(
'tlh_contact_address',
array(
'label' => __('Contact Address','clever-fox'),
'section' => 'above_header',
'type' => 'text'
)
);
/*=========================================
Menu Link
=========================================*/
//Header Top Menu Link Documentation Link
class renoval_eractor_wp_top_menu_section_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="#" 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
}
}
// Header Doc Link //
$wp_customize->add_setting(
'top_menu_doc_link' ,
array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_text_field',
)
);
$wp_customize->add_control(new renoval_eractor_wp_top_menu_section_Customize_Control($wp_customize,
'top_menu_doc_link' ,
array(
'label' => __( 'Top Menu Documentation Link', 'clever-fox' ),
'section' => 'above_header',
'type' => 'radio',
'description' => __( 'Top Menu Documentation Link', 'clever-fox' ),
)
) );
$wp_customize->add_setting( 'top_menu_link_contents',
array(
'sanitize_callback' => 'renoval_repeater_sanitize',
'priority' => 2,
'default' => renoval_get_top_menu_link_default()
)
);
$wp_customize->add_control(
new RENOVAL_Repeater( $wp_customize,
'top_menu_link_contents',
array(
'label' => esc_html__('Top Menu Link','clever-fox'),
'section' => 'above_header',
'add_field_label' => esc_html__( 'Add Top Menu', 'clever-fox' ),
'item_name' => esc_html__( 'Toplink', 'clever-fox' ),
'customizer_repeater_title_control' => true,
'customizer_repeater_link_control' => true,
)
)
);
//Pro feature
class Renoval_toplink__section_upgrade extends WP_Customize_Control {
public function render_content() {
?>
<a class="customizer_toplink_upgrade_section up-to-pro" href="https://www.nayrathemes.com/renoval-pro/" target="_blank" style="display: none;"><?php esc_html_e('Upgrade to Pro','clever-fox'); ?></a>
<?php
}
}
$wp_customize->add_setting( 'renoval_toplink_upgrade_to_pro', array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'wp_filter_nohtml_kses',
));
$wp_customize->add_control(
new Renoval_toplink__section_upgrade(
$wp_customize,
'renoval_toplink_upgrade_to_pro',
array(
'section' => 'above_header',
)
)
);
}
add_action( 'customize_register', 'renoval_eractor_header_settings' );
// Header selective refresh
function renoval_eractor_header_partials( $wp_customize ){
// tlh_contct_icon
$wp_customize->selective_refresh->add_partial( 'tlh_contct_icon', array(
'selector' => '.content-area .contact-icon i',
'settings' => 'tlh_contct_icon',
'render_callback' => 'renoval_tlh_contct_icon_render_callback',
) );
// tlh_contact_address_title
$wp_customize->selective_refresh->add_partial( 'tlh_contact_address_title', array(
'selector' => '.widget-contact .widget-title',
'settings' => 'tlh_contact_address_title',
'render_callback' => 'renoval_tlh_contact_address_title_render_callback',
) );
// tlh_contact_address
$wp_customize->selective_refresh->add_partial( 'tlh_contact_address', array(
'selector' => '.widget-contact .content-area .contact-info p',
'settings' => 'tlh_contact_address',
'render_callback' => 'renoval_tlh_contact_address_render_callback',
) );
}
add_action( 'customize_register', 'renoval_eractor_header_partials' );
// tlh_contct_icon
function renoval_tlh_tlh_contct_icon_render_callback() {
return get_theme_mod( 'tlh_contct_icon' );
}
// tlh_contact_address_title
function renoval_tlh_contact_address_title_render_callback() {
return get_theme_mod( 'tlh_contact_address_title' );
}
// tlh_contact_address
function renoval_tlh_contact_address_render_callback() {
return get_theme_mod( 'tlh_contact_address' );
}