HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux vm8 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User: afleverb (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //var/www/mussarq_bak/wp-content/themes/catch-vogue/inc/customizer/featured-content.php
<?php
/**
 * Featured Content options
 *
 * @package Catch Vogue
 */

/**
 * Add featured content options to theme options
 *
 * @param WP_Customize_Manager $wp_customize Theme Customizer object.
 */
function catch_vogue_featured_content_options( $wp_customize ) {
	// Add note to Jetpack Testimonial Section
    catch_vogue_register_option( $wp_customize, array(
            'name'              => 'catch_vogue_featured_content_jetpack_note',
            'sanitize_callback' => 'sanitize_text_field',
            'custom_control'    => 'Catch_Vogue_Note_Control',
            'label'             => sprintf( esc_html__( 'For all Featured Content Options for Catch Vogue Theme, go %1$shere%2$s', 'catch-vogue' ),
                '<a href="javascript:wp.customize.section( \'catch_vogue_featured_content\' ).focus();">',
                 '</a>'
            ),
           'section'            => 'featured_content',
            'type'              => 'description',
            'priority'          => 1,
        )
    );

    $wp_customize->add_section( 'catch_vogue_featured_content', array(
			'title' => esc_html__( 'Featured Content', 'catch-vogue' ),
			'panel' => 'catch_vogue_theme_options',
		)
	);

    $action = 'install-plugin';
	$slug   = 'essential-content-types';

	$install_url = wp_nonce_url(
	    add_query_arg(
	        array(
	            'action' => $action,
	            'plugin' => $slug
	        ),
	        admin_url( 'update.php' )
	    ),
	    $action . '_' . $slug
	);

	// Add note to ECT Featured Content Section
    catch_vogue_register_option( $wp_customize, array(
            'name'              => 'catch_vogue_featured_content_etc_note',
            'sanitize_callback' => 'sanitize_text_field',
            'custom_control'    => 'Catch_Vogue_Note_Control',
            'active_callback'   => 'catch_vogue_is_ect_featured_content_inactive',
            /* translators: 1: <a>/link tag start, 2: </a>/link tag close. */
            'label'             => sprintf( esc_html__( 'For Featured Content, install %1$sEssential Content Types%2$s Plugin with Featured Content Type Enabled', 'catch-vogue' ),
                '<a target="_blank" href="' . esc_url( $install_url ) . '">',
                '</a>'

            ),
           'section'            => 'catch_vogue_featured_content',
            'type'              => 'description',
            'priority'          => 1,
        )
    );

	// Add color scheme setting and control.
	catch_vogue_register_option( $wp_customize, array(
			'name'              => 'catch_vogue_featured_content_option',
			'default'           => 'disabled',
			'sanitize_callback' => 'catch_vogue_sanitize_select',
			'active_callback'	=> 'catch_vogue_is_ect_featured_content_active',
			'choices'           => catch_vogue_section_visibility_options(),
			'label'             => esc_html__( 'Enable on', 'catch-vogue' ),
			'section'           => 'catch_vogue_featured_content',
			'type'              => 'select',
		)
	);

    catch_vogue_register_option( $wp_customize, array(
            'name'              => 'catch_vogue_featured_content_cpt_note',
            'sanitize_callback' => 'sanitize_text_field',
            'custom_control'    => 'Catch_Vogue_Note_Control',
            'active_callback'   => 'catch_vogue_is_featured_content_active',
            /* translators: 1: <a>/link tag start, 2: </a>/link tag close. */
			'label'             => sprintf( esc_html__( 'For CPT heading and sub-heading, go %1$shere%2$s', 'catch-vogue' ),
                 '<a href="javascript:wp.customize.control( \'featured_content_title\' ).focus();">',
                 '</a>'
            ),
            'section'           => 'catch_vogue_featured_content',
            'type'              => 'description',
        )
    );

	catch_vogue_register_option( $wp_customize, array(
			'name'              => 'catch_vogue_featured_content_number',
			'default'           => 3,
			'sanitize_callback' => 'catch_vogue_sanitize_number_range',
			'active_callback'   => 'catch_vogue_is_featured_content_active',
			'description'       => esc_html__( 'Save and refresh the page if No. of Featured Content is changed (Max no of Featured Content is 20)', 'catch-vogue' ),
			'input_attrs'       => array(
				'style' => 'width: 100px;',
				'min'   => 0,
			),
			'label'             => esc_html__( 'No of items', 'catch-vogue' ),
			'section'           => 'catch_vogue_featured_content',
			'type'              => 'number',
			'transport'         => 'postMessage',
		)
	);

	$number = get_theme_mod( 'catch_vogue_featured_content_number', 3 );

	//loop for featured post content
	for ( $i = 1; $i <= $number ; $i++ ) {
		catch_vogue_register_option( $wp_customize, array(
				'name'              => 'catch_vogue_featured_content_cpt_' . $i,
				'sanitize_callback' => 'catch_vogue_sanitize_post',
				'active_callback'   => 'catch_vogue_is_featured_content_active',
				'label'             => esc_html__( 'Featured Content', 'catch-vogue' ) . ' ' . $i ,
				'section'           => 'catch_vogue_featured_content',
				'type'              => 'select',
                'choices'           => catch_vogue_generate_post_array( 'featured-content' ),
			)
		);
	} // End for().

	catch_vogue_register_option( $wp_customize, array(
			'name'              => 'catch_vogue_featured_content_text',
			'default'           => esc_html__( 'View All', 'catch-vogue' ),
			'sanitize_callback' => 'sanitize_text_field',
			'active_callback'   => 'catch_vogue_is_featured_content_active',
			'label'             => esc_html__( 'Button Text', 'catch-vogue' ),
			'section'           => 'catch_vogue_featured_content',
			'type'              => 'text',
		)
	);

	catch_vogue_register_option( $wp_customize, array(
			'name'              => 'catch_vogue_featured_content_link',
			'sanitize_callback' => 'esc_url_raw',
			'active_callback'   => 'catch_vogue_is_featured_content_active',
			'label'             => esc_html__( 'Button Link', 'catch-vogue' ),
			'section'           => 'catch_vogue_featured_content',
		)
	);

	catch_vogue_register_option( $wp_customize, array(
			'name'              => 'catch_vogue_featured_content_target',
			'sanitize_callback' => 'catch_vogue_sanitize_checkbox',
			'active_callback'   => 'catch_vogue_is_featured_content_active',
			'label'             => esc_html__( 'Open Link in New Window/Tab', 'catch-vogue' ),
			'section'           => 'catch_vogue_featured_content',
			'custom_control'    => 'Catch_Vogue_Toggle_Control',
		)
	);
}
add_action( 'customize_register', 'catch_vogue_featured_content_options', 10 );

/** Active Callback Functions **/
if ( ! function_exists( 'catch_vogue_is_featured_content_active' ) ) :
	/**
	* Return true if featured content is active
	*
	* @since Catch Vogue 1.0
	*/
	function catch_vogue_is_featured_content_active( $control ) {
		$enable = $control->manager->get_setting( 'catch_vogue_featured_content_option' )->value();

		//return true only if previewed page on customizer matches the type of content option selected
		return ( catch_vogue_check_section( $enable ) );
	}
endif;

if ( ! function_exists( 'catch_vogue_is_ect_featured_content_active' ) ) :
    /**
    * Return true if featured_content is active
    *
    * @since Catch Vogue 1.0
    */
    function catch_vogue_is_ect_featured_content_active( $control ) {
        return ( class_exists( 'Essential_Content_Featured_Content' ) || class_exists( 'Essential_Content_Pro_Featured_Content' ) );
    }
endif;

if ( ! function_exists( 'catch_vogue_is_ect_featured_content_inactive' ) ) :
    /**
    * Return true if featured_content is active
    *
    * @since Catch Vogue 1.0
    */
    function catch_vogue_is_ect_featured_content_inactive( $control ) {
        return ! ( class_exists( 'Essential_Content_Featured_Content' ) || class_exists( 'Essential_Content_Pro_Featured_Content' ) );
    }
endif;