HEX
Server: Apache
System: Linux 162-240-236-42.bluehost.com 3.10.0-1160.114.2.el7.x86_64 #1 SMP Wed Mar 20 15:54:52 UTC 2024 x86_64
User: bt667 (1004)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /home/bt667/public_html/wp-content/themes/news-event/inc/customizer/sanitize-functions.php
<?php
/**
 * Includes sanitize functions
 * 
 * @package News Event
 * @since 1.0.0
 */
if( !function_exists( 'news_event_sanitize_toggle_control' )  ) :
    /**
     * Sanitize customizer toggle control value
     * 
     * @package News Event
     * @since 1.0.0
     */
    function news_event_sanitize_toggle_control($value) {
        return rest_sanitize_boolean( $value );
    }
 endif;

 if( !function_exists( 'news_event_sanitize_url' )  ) :
    /**
     * Sanitize customizer url control value
     * 
     * @package News Event
     * @since 1.0.0
     */
    function news_event_sanitize_url($value) {
        return esc_url_raw($value);
    }
 endif;

 if( !function_exists( 'news_event_sanitize_select_control' )  ) :
    /**
     * Sanitize customizer select control value
     * 
     * @package News Event
     * @since 1.0.0
     */
    function news_event_sanitize_select_control( $input, $setting ) {
        // Ensure input is a slug.
        $input = sanitize_key( $input );
        // Get list of choices from the control associated with the setting.
        $choices = $setting->manager->get_control( $setting->id )->choices;
        // If the input is a valid key, return it; otherwise, return the default.
        return ( array_key_exists( $input, $choices ) ? $input : $setting->default );
    }
endif;

if( !function_exists( 'news_event_sanitize_responsive_range' )  ) :
    /**
     * Sanitize range slider control value
     * 
     * @package News Event
     * @since 1.0.0
     */
    function news_event_sanitize_responsive_range($range, $setting) {
        // Ensure input is an absolute integer.
        foreach( $range as $rangKey => $rang ) :
            $range[$rangKey] = is_numeric( $rang ) ? $rang: 0;
        endforeach;
        // Get the input attributes associated with the setting.
        $atts = $setting->manager->get_control($setting->id)->input_attrs;

        // Get minimum number in the range.
        $min = ( isset($atts['min']) ? $atts['min'] : $number );
        // Get maximum number in the range.
        $max = ( isset($atts['max']) ? $atts['max'] : $number );
        // Get step.
        $step = ( isset($atts['step']) ? $atts['step'] : 1 );

        // If the number is within the valid range, return it; otherwise, return the default
        return ( ( $min <= $range['smartphone'] && $range['smartphone'] <= $max && is_numeric($range['smartphone'] / $step) && ( $min <= $range['tablet'] && $range['tablet'] <= $max && is_numeric($range['tablet'] / $step) ? $range : $setting->default ) && ( $min <= $range['desktop'] && $range['desktop'] <= $max && is_numeric($range['desktop'] / $step) ? $range : $setting->default ) ) ? $range : $setting->default );
    }
endif;

if( !function_exists( 'news_event_sanitize_array' )  ) :
    /**
     * Sanitize array control value
     * 
     * @package News Event
     * @since 1.0.0
     */ 
    function news_event_sanitize_array( $value ) {
        return wp_unslash( $value );
    }
 endif;

 if( !function_exists( 'news_event_sanitize_responsive_multiselect_control' )  ) :
    /**
     * Sanitize responsive multiselect control value
     * 
     * @package News Event
     * @since 1.0.0
     */
    function news_event_sanitize_responsive_multiselect_control( $value ) {
        if( ! is_array( $value ) ) return array("desktop"=> true, "tablet"=> true, "mobile"=> true);
        $value["desktop"] = ! isset( $value["desktop"] ) ? true : rest_sanitize_boolean( $value["desktop"] );
        $value["tablet"] = ! isset( $value["tablet"] ) ? true : rest_sanitize_boolean( $value["tablet"] );
        $value["mobile"] = ! isset( $value["mobile"] ) ? true : rest_sanitize_boolean( $value["mobile"] );
        return $value;
    }
 endif;

 if( !function_exists( 'news_event_sanitize_solid_color' )  ) :
    /**
     * Sanitize color value
     * 
     * @package News Event
     * @since 1.0.0
     */
    function news_event_sanitize_solid_color( $color ) {
        if( sanitize_hex_color( $color ) ) { // 3 or 6 hex digits, or the empty string.
            return $color;
        } else if ( preg_match( '|^#([A-Fa-f0-9]{8})|', $color ) ) { // 8 hex digits, or the empty string.
            return $color;
        } else if ( strlen( $color ) > 8 && substr( $color, 0, 26 ) === "--news-event-global-preset" ) {
			return $color;
		} else {
            return '#000';
        }
    }
 endif;

 if( !function_exists( 'news_event_sanitize_repeater_control' )  ) :
    /**
     * Sanitize color group image control value
     * 
     * @package News Event
     * @since 1.0.0
     */
    function news_event_sanitize_repeater_control($value,$setting) {
        return apply_filters( NEWS_EVENT_PREFIX . 'repeater_control_value', wp_kses_post($value) );
    }
 endif;

 if( !function_exists( 'news_event_sanitize_sortable_control' )  ) :
    /**
     * Sanitize sortable control value
     * 
     * @package News Event
     * @since 1.0.0
     */
    function news_event_sanitize_sortable_control($box,$setting) {
        if( ! is_string( $box ) ) return apply_filters( NEWS_EVENT_PREFIX . 'sortable_control_value', $setting->default );
        return apply_filters( NEWS_EVENT_PREFIX . 'sortable_control_value', $box );
    }
 endif;

 if( !function_exists( 'news_event_sanitize_get_responsive_integer_value' )  ) :
    /**
     * Sanitize number value
     * 
     * @package News Event
     * @since 1.0.0
     */
    function news_event_sanitize_get_responsive_integer_value($value) {
        $value['desktop'] = isset( $value['desktop'] ) ? $value['desktop'] : 0;
        $value['tablet'] = isset( $value['tablet'] ) ? $value['tablet'] : 0;
        $value['smartphone'] = isset( $value['smartphone'] ) ? $value['smartphone'] : 0;
        return apply_filters( NEWS_EVENT_PREFIX . 'custom_responsive_integer_value', $value );
    }
 endif;

 if( !function_exists( 'news_event_sanitize_typo_control' )  ) :
    /**
     * Sanitize typo value
     * 
     * @package News Event
     * @since 1.0.0
     */
    function news_event_sanitize_typo_control($control,$setting) {
        $control['font_family']['value'] = isset( $control['font_family']['value'] ) ? esc_html($control['font_family']['value']) : $setting->default['font_family']['value'];
        $control['font_weight']['value'] = isset( $control['font_weight']['value'] ) ? esc_html($control['font_weight']['value']) : '400';
        $control['font_size'] = isset( $control['font_size'] ) ? news_event_sanitize_get_responsive_integer_value($control['font_size']) : $setting->default['font_size'];
        $control['line_height'] = isset( $control['line_height'] ) ? news_event_sanitize_get_responsive_integer_value($control['line_height']) : $setting->default['line_height'];
        $control['letter_spacing'] = isset( $control['letter_spacing'] ) ? news_event_sanitize_get_responsive_integer_value($control['letter_spacing']) : $setting->default['letter_spacing'];
        if( isset( $control['text_transform'] ) ) {
            $control['text_transform'] = in_array( $control['text_transform'], ['unset','capitalize','uppercase','lowercase'] ) ? esc_html($control['text_transform']) : 'capitalize';
        } else {
            $control['text_transform'] = $setting->default['text_transform'];
        }
        if( isset( $control['text_decoration'] ) ) {
            $control['text_decoration'] = in_array( $control['text_decoration'], ['none','underline','line-through'] ) ? esc_html($control['text_decoration']) : 'none';
        } else {
            $control['text_decoration'] = $setting->default['text_decoration'];
        }
        return apply_filters( NEWS_EVENT_PREFIX . 'typo_control_value', $control );
    }
 endif;

 if( !function_exists( 'news_event_sanitize_box_shadow_control' )  ) :
    /**
     * Sanitize box shadow value
     * 
     * @package News Event
     * @since 1.0.0
     */
    function news_event_sanitize_box_shadow_control($control,$setting) {
        $control['option'] = isset( $control['option'] ) ? esc_html($control['option']) : $setting->default['option'];
        $control['type'] = isset( $control['type'] ) ? esc_html($control['type']) : $setting->default['type'];
        $control['hoffset'] = isset( $control['hoffset'] ) ? $control['hoffset'] : $setting->default['hoffset'];
        $control['voffset'] = isset( $control['voffset'] ) ? $control['voffset'] : $setting->default['voffset'];
        $control['blur'] = isset( $control['blur'] ) ? $control['blur'] : $setting->default['blur'];
        $control['spread'] = isset( $control['spread'] ) ? $control['spread'] : $setting->default['spread'];
        return apply_filters( NEWS_EVENT_PREFIX . 'box_shadow_control_value', $control );
    }
 endif;

 if( ! function_exists( 'news_event_sanitize_icon_picker_control' )  ) :
    /**
     * Sanitize array icon picker control value
     * 
     * @package News Event
     * @since 1.0.0
     */ 
    function news_event_sanitize_icon_picker_control( $value ) {
        $unslashed_value = wp_unslash( $value );
        if( ! in_array( $unslashed_value['type'], ['icon','svg','none'] ) ) {
            $unslashed_value['type'] = 'none';
            $unslashed_value['value'] = '';
        }
        return $unslashed_value;
    }
 endif;

 /**
 * Function to sanitize responsive spacing control
 * 
 * @package News Event
 * @since 1.0.0
 */

if( ! function_exists( 'news_event_sanitize_spacing_control' ) ) :
    function news_event_sanitize_spacing_control( $value, $setting ) {
        if( ! is_array( $value ) ) return $settings->default;
        // for desktop
        $value['desktop']['top'] = isset( $value['desktop']['top'] ) && is_int( $value['desktop']['top'] ) ? $value['desktop']['top'] : $setting->default['desktop']['top'];
        $value['desktop']['right'] = isset( $value['desktop']['right'] ) && is_int( $value['desktop']['right'] ) ? $value['desktop']['right'] : $setting->default['desktop']['right'];
        $value['desktop']['bottom'] = isset( $value['desktop']['bottom'] ) && is_int( $value['desktop']['bottom'] ) ? $value['desktop']['bottom'] : $setting->default['desktop']['bottom'];
        $value['desktop']['left'] = isset( $value['desktop']['left'] ) && is_int( $value['desktop']['left'] ) ? $value['desktop']['left'] : $setting->default['desktop']['left'];
        $value['desktop']['link'] = isset( $value['desktop']['link'] ) && is_bool( $value['desktop']['link'] ) ? $value['desktop']['link'] : $setting->default['desktop']['link'];
        // for tablet
        $value['tablet']['top'] = isset( $value['tablet']['top'] ) && is_int( $value['tablet']['top'] ) ? $value['tablet']['top'] : $setting->default['tablet']['top'];
        $value['tablet']['right'] = isset( $value['tablet']['right'] ) && is_int( $value['tablet']['right'] ) ? $value['tablet']['right'] : $setting->default['tablet']['right'];
        $value['tablet']['bottom'] = isset( $value['tablet']['bottom'] ) && is_int( $value['tablet']['bottom'] ) ? $value['tablet']['bottom'] : $setting->default['tablet']['bottom'];
        $value['tablet']['left'] = isset( $value['tablet']['left'] ) && is_int( $value['tablet']['left'] ) ? $value['tablet']['left'] : $setting->default['tablet']['left'];
        $value['tablet']['link'] = isset( $value['tablet']['link'] ) && is_bool( $value['tablet']['link'] ) ? $value['tablet']['link'] : $setting->default['tablet']['link'];
        // for smartphone
        $value['smartphone']['top'] = isset( $value['smartphone']['top'] ) && is_int( $value['smartphone']['top'] ) ? $value['smartphone']['top'] : $setting->default['smartphone']['top'];
        $value['smartphone']['right'] = isset( $value['smartphone']['right'] ) && is_int( $value['smartphone']['right'] ) ? $value['smartphone']['right'] : $setting->default['smartphone']['right'];
        $value['smartphone']['bottom'] = isset( $value['smartphone']['bottom'] ) && is_int( $value['smartphone']['bottom'] ) ? $value['smartphone']['bottom'] : $setting->default['smartphone']['bottom'];
        $value['smartphone']['left'] = isset( $value['smartphone']['left'] ) && is_int( $value['smartphone']['left'] ) ? $value['smartphone']['left'] : $setting->default['smartphone']['left'];
        $value['smartphone']['link'] = isset( $value['smartphone']['link'] ) && is_bool( $value['smartphone']['link'] ) ? $value['smartphone']['link'] : $setting->default['smartphone']['link'];

        return $value;
    }
 endif;

 if( ! function_exists( 'news_event_sanitize_social_share_control' ) ) :
    /**
     * Sanitize social share control value
     * 
     * @package News Event
     * @since 1.0.0
     */
    function news_event_sanitize_social_share_control( $values, $setting ) {
        $control_default = $setting->default;
        if( ! is_array( $values ) && empty( $values ) ) return $control_default;
        $all_social_shares = array_keys( news_event_get_all_social_share() );
        $sanitized_values = [];
        foreach( $values as $index => $value ) :
            $color = $value['color'];
            $background = $value['background'];
            $sanitized_color = [
                'initial' => news_event_sanitize_color_value( $color[ 'initial' ] ),
                'hover' => news_event_sanitize_color_value( $color[ 'hover' ] )
            ];
            $sanitized_background = [
                'initial' => news_event_sanitize_color_value( $background[ 'initial' ] ),
                'hover' => news_event_sanitize_color_value( $background[ 'hover' ] )
            ];
            $sanitized_values[ $index ][ 'icon' ] = in_array( $value['icon'], $all_social_shares ) ? $value['icon'] : $control_default[ $index ][ 'icon' ];
            $sanitized_values[ $index ][ 'color' ] = $sanitized_color;
            $sanitized_values[ $index ][ 'background' ] = $sanitized_background;
        endforeach;
        return apply_filters( 'news_event_customizer_sanitize_social_share_control_filter', $sanitized_values );
    }
 endif;

 if( ! function_exists( 'news_event_sanitize_color_control' ) ) :
    /**
     * Sanitization function for color control
     * 
     * @since 1.0.0
     */
    function news_event_sanitize_color_control( $values, $setting ) {
        $default = $setting->default;
        if( empty( $values ) || ! is_array( $values ) ) return $default;   /* Return Default if $values is ( empty || not array ) */

        if( array_key_exists( 'initial', $values ) ) :
            $initial = news_event_sanitize_color_value( $values[ 'initial' ] );
            $hover = news_event_sanitize_color_value( $values[ 'hover' ] );
            return [
                'initial'   =>  $initial,
                'hover'   =>  $hover
            ];
        else:
            return news_event_sanitize_color_value( $values );
        endif;
    }
 endif;

 if( ! function_exists( 'news_event_sanitize_color_value' ) ) :
    /**
     * Sanitize value of color control
     * 
     * @since 1.0.0
     */
    function news_event_sanitize_color_value( $values ) {
        $expected_color_types = [ 'solid', 'gradient', 'image' ];
        $sanitized_values = [];
        $type = $values['type'];
        $sanitized_values['type'] = sanitize_text_field( $type );
        switch( $type ) :
            case 'solid':
                    $sanitized_values[ 'solid' ] = news_event_sanitize_solid_color( $values[ 'solid' ] );
                break;
            case 'gradient':
                    $sanitized_values[ 'gradient' ] = sanitize_text_field( $values[ 'gradient' ] );
                break;
            case 'image':
                    $image = $values[ 'image' ];
                    if( ! array_key_exists( 'id', $image ) || ! array_key_exists( 'url', $image ) ) return false;
                    if( ! is_int( $image[ 'id' ] ) ) return false;

                    $sanitized_values[ 'image' ][ 'id' ] = absint( $image[ 'id' ] );
                    $sanitized_values[ 'image' ][ 'url' ] = esc_url( $image[ 'url' ] );
                    $sanitized_values[ 'position' ] = ( array_key_exists( 'position', $values ) ) ? sanitize_text_field( $values[ 'position' ] ) : 'left top';
                    $sanitized_values[ 'repeat' ] = ( array_key_exists( 'repeat', $values ) ) ? sanitize_text_field( $values[ 'repeat' ] ) : 'no-repeat';
                    $sanitized_values[ 'attachment' ] = ( array_key_exists( 'attachment', $values ) ) ? sanitize_text_field( $values[ 'attachment' ] ) : 'fixed';
                    $sanitized_values[ 'size' ] = ( array_key_exists( 'size', $values ) ) ? sanitize_text_field( $values[ 'size' ] ) : 'auto';
                break;
        endswitch;
        return $sanitized_values;
    }
 endif;