403Webshell
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/avril/features/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/ifwar.ru/www/wp-content/plugins/clever-fox/inc/avril/features/avril-features.php
<?php
if ( ! defined( 'ABSPATH' ) ) exit;
function avril_features_setting( $wp_customize ) {
$selective_refresh = isset( $wp_customize->selective_refresh ) ? 'postMessage' : 'refresh';
	/*=========================================
	Service  Section
	=========================================*/
	$wp_customize->add_section(
		'feature_setting', array(
			'title' => esc_html__( 'Features Section', 'clever-fox' ),
			'priority' => 4,
			'panel' => 'avril_frontpage_sections',
		)
	);
	
	// Features Setting
	$wp_customize->add_setting(
		'feature_setting_head'
			,array(
			'capability'     	=> 'edit_theme_options',
			'sanitize_callback' => 'avril_sanitize_text',
			'priority' => 2,
		)
	);

	$wp_customize->add_control(
	'feature_setting_head',
		array(
			'type' => 'hidden',
			'label' => __('Setting','clever-fox'),
			'section' => 'feature_setting',
		)
	);
	
	$wp_customize->add_setting( 
		'hs_feature' , 
			array(
			'default' => '1',
			'sanitize_callback' => 'avril_sanitize_checkbox',
			'capability' => 'edit_theme_options',
			'priority' => 2,
		) 
	);
	
	$wp_customize->add_control(
	'hs_feature', 
		array(
			'label'	      => esc_html__( 'Hide / Show Section', 'clever-fox' ),
			'section'     => 'feature_setting',
			'type'        => 'checkbox'
		) 
	);
	
	// Features Header Section // 
	$wp_customize->add_setting(
		'feature_headings'
			,array(
			'capability'     	=> 'edit_theme_options',
			'sanitize_callback' => 'avril_sanitize_text',
			'priority' => 3,
		)
	);

	$wp_customize->add_control(
	'feature_headings',
		array(
			'type' => 'hidden',
			'label' => __('Header','clever-fox'),
			'section' => 'feature_setting',
		)
	);
	
	// Feature Title // 
	$wp_customize->add_setting(
    	'feature_title',
    	array(
	        'default'			=> __('Technology from tomorrow','clever-fox'),
			'capability'     	=> 'edit_theme_options',
			'sanitize_callback' => 'avril_sanitize_html',
			'transport'         => $selective_refresh,
			'priority' => 4,
		)
	);	
	
	$wp_customize->add_control( 
		'feature_title',
		array(
		    'label'   => __('Title','clever-fox'),
		    'section' => 'feature_setting',
			'type'           => 'text',
		)  
	);
	
	// Service Subtitle // 
	$wp_customize->add_setting(
    	'feature_subtitle',
    	array(
	        'default'			=> __('Outstanding <span class="av-heading animate-7"><span class="av-text-wrapper"><b class="is-show">Features</b>                                   <b>Features</b><b>Features</b></span></span>','clever-fox'),
			'capability'     	=> 'edit_theme_options',
			'sanitize_callback' => 'avril_sanitize_html',
			'transport'         => $selective_refresh,
			'priority' => 5,
		)
	);	
	
	$wp_customize->add_control( 
		'feature_subtitle',
		array(
		    'label'   => __('Subtitle','clever-fox'),
		    'section' => 'feature_setting',
			'type'           => 'textarea',
		)  
	);
	
	// Feature Description // 
	$wp_customize->add_setting(
    	'feature_description',
    	array(
	        'default'			=> __('Lorem Ipsum is simply dummy of printing and typesetting and industry. Lorem Ipsum been.','clever-fox'),
			'capability'     	=> 'edit_theme_options',
			'sanitize_callback' => 'avril_sanitize_html',
			'transport'         => $selective_refresh,
			'priority' => 6,
		)
	);	
	
	$wp_customize->add_control( 
		'feature_description',
		array(
		    'label'   => __('Description','clever-fox'),
		    'section' => 'feature_setting',
			'type'           => 'textarea',
		)  
	);

	// Fetaures content Section // 
	
	$wp_customize->add_setting(
		'feature_contents_head'
			,array(
			'capability'     	=> 'edit_theme_options',
			'sanitize_callback' => 'avril_sanitize_text',
			'priority' => 7,
		)
	);

	$wp_customize->add_control(
	'feature_contents_head',
		array(
			'type' => 'hidden',
			'label' => __('Content','clever-fox'),
			'section' => 'feature_setting',
		)
	);
	
	/**
	 * Customizer Repeater for add Features
	 */
	
		$wp_customize->add_setting( 'features_contents', 
			array(
			 'sanitize_callback' => 'avril_repeater_sanitize',
			 'transport'         => $selective_refresh,
			 'priority' => 8,
			 'default' => avril_get_features_default()
			)
		);
		
		$wp_customize->add_control( 
			new Avril_Repeater( $wp_customize, 
				'features_contents', 
					array(
						'label'   => esc_html__('Features','clever-fox'),
						'section' => 'feature_setting',
						'add_field_label'                   => esc_html__( 'Add New Feature', 'clever-fox' ),
						'item_name'                         => esc_html__( 'Feature', 'clever-fox' ),
						'customizer_repeater_icon_control' => true,
						'customizer_repeater_title_control' => true,
						'customizer_repeater_text_control' => true,
					) 
				) 
			);
			
			
		//Pro feature
		class Avril_feature__section_upgrade extends WP_Customize_Control {
			public function render_content() { 
			$cleverfox_theme = wp_get_theme(); // gets the current theme
				if ( 'Aera' == $cleverfox_theme->name){	
			?>
				<a class="customizer_feature_upgrade_section up-to-pro"  href="https://www.nayrathemes.com/aera-pro/" target="_blank"
				style="display: none;"><?php esc_html_e('Upgrade to Pro','clever-fox'); ?></a>
				
			<?php }elseif ( 'Avail' == $cleverfox_theme->name){ ?>
				
				<a class="customizer_feature_upgrade_section up-to-pro"  href="https://www.nayrathemes.com/avail-pro/" target="_blank"
				style="display: none;"><?php esc_html_e('Upgrade to Pro','clever-fox'); ?></a>
					
			<?php }elseif ( 'Axtia' == $cleverfox_theme->name){ ?>
				
				<a class="customizer_feature_upgrade_section up-to-pro"  href="https://www.nayrathemes.com/axtia-pro/" target="_blank"
				style="display: none;"><?php esc_html_e('Upgrade to Pro','clever-fox'); ?></a>
				
			<?php }elseif ( 'Avtari' == $cleverfox_theme->name){ ?>
				
				<a class="customizer_feature_upgrade_section up-to-pro"  href="https://www.nayrathemes.com/avtari-pro/" target="_blank"
				style="display: none;"><?php esc_html_e('Upgrade to Pro','clever-fox'); ?></a>	
				
			<?php }elseif ( 'Aviser' == $cleverfox_theme->name){ ?>
				
				<a class="customizer_feature_upgrade_section up-to-pro"  href="https://www.nayrathemes.com/aviser-pro/" target="_blank"
				style="display: none;"><?php esc_html_e('Upgrade to Pro','clever-fox'); ?></a>	

			<?php }elseif ( 'Avitech' == $cleverfox_theme->name){ ?>
				
				<a class="customizer_feature_upgrade_section up-to-pro"  href="https://www.nayrathemes.com/avitech-pro/" target="_blank"
				style="display: none;"><?php esc_html_e('Upgrade to Pro','clever-fox'); ?></a>	

			<?php }elseif ( 'Ampark' == $cleverfox_theme->name){ ?>
				
				<a class="customizer_feature_upgrade_section up-to-pro"  href="https://www.nayrathemes.com/ampark-pro/" target="_blank"
				style="display: none;"><?php esc_html_e('Upgrade to Pro','clever-fox'); ?></a>	

			<?php }elseif ( 'Evion' == $cleverfox_theme->name){ ?>
				
				<a class="customizer_feature_upgrade_section up-to-pro"  href="https://www.nayrathemes.com/evion-pro/" target="_blank"
				style="display: none;"><?php esc_html_e('Upgrade to Pro','clever-fox'); ?></a>	

			<?php }elseif ( 'Varuda' == $cleverfox_theme->name){ ?>
				
				<a class="customizer_feature_upgrade_section up-to-pro"  href="https://www.nayrathemes.com/varuda-pro/" target="_blank"
				style="display: none;"><?php esc_html_e('Upgrade to Pro','clever-fox'); ?></a>		
				
			<?php }elseif ( 'Axivo' == $cleverfox_theme->name){ ?>
				
				<a class="customizer_feature_upgrade_section up-to-pro"  href="https://www.nayrathemes.com/axivo-pro/" target="_blank"
				style="display: none;"><?php esc_html_e('Upgrade to Pro','clever-fox'); ?></a>		
				
			<?php
			   }else{
			?>
				<a class="customizer_feature_upgrade_section up-to-pro"  href="https://www.nayrathemes.com/avril-pro/" target="_blank"
				style="display: none;"><?php esc_html_e('Upgrade to Pro','clever-fox'); ?></a>
			<?php
			   }
			}
		}
		
		$wp_customize->add_setting( 'avril_feature_upgrade_to_pro', array(
			'capability'			=> 'edit_theme_options',
			'sanitize_callback'	=> 'wp_filter_nohtml_kses',
		));
		$wp_customize->add_control(
			new Avril_feature__section_upgrade(
			$wp_customize,
			'avril_feature_upgrade_to_pro',
				array(
					'section'				=> 'feature_setting',
					'settings'				=> 'avril_feature_upgrade_to_pro',
				)
			)
		);	
}

add_action( 'customize_register', 'avril_features_setting' );

// service selective refresh
function avril_features_section_partials( $wp_customize ){	
	// feature_title
	$wp_customize->selective_refresh->add_partial( 'feature_title', array(
		'selector'            => '#features-section .heading-default .ttl',
		'settings'            => 'feature_title',
		'render_callback'  => 'avril_feature_title_render_callback',
	
	) );
	
	// feature_subtitle
	$wp_customize->selective_refresh->add_partial( 'feature_subtitle', array(
		'selector'            => '#features-section .heading-default h3',
		'settings'            => 'feature_subtitle',
		'render_callback'  => 'avril_feature_subtitle_render_callback',
	
	) );
	
	// feature_description
	$wp_customize->selective_refresh->add_partial( 'feature_description', array(
		'selector'            => '#features-section .heading-default p',
		'settings'            => 'feature_description',
		'render_callback'  => 'avril_feature_description_render_callback',
	
	) );
	// features_contents
	$wp_customize->selective_refresh->add_partial( 'features_contents', array(
		'selector'            => '#features-section .features-area'
	
	) );
	
	}

add_action( 'customize_register', 'avril_features_section_partials' );

// feature_title
function avril_feature_title_render_callback() {
	return get_theme_mod( 'feature_title' );
}

// feature_subtitle
function avril_feature_subtitle_render_callback() {
	return get_theme_mod( 'feature_subtitle' );
}

// service description
function avril_feature_description_render_callback() {
	return get_theme_mod( 'feature_description' );
}

Youez - 2016 - github.com/yon3zu
LinuXploit