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( 'wp_commerce_sanitize_image' ) ) : /** * Sanitize image. * * @since 1.0.0 * * @see wp_check_filetype() https://developer.wordpress.org/reference/functions/wp_check_filetype/ * * @param string $image Image filename. * @param WP_Customize_Setting $setting WP_Customize_Setting instance. * @return string The image filename if the extension is allowed; otherwise, the setting default. */ function wp_commerce_sanitize_image( $image, $setting ) { /** * Array of valid image file types. * * The array includes image mime types that are included in wp_get_mime_types(). */ $mimes = array( 'jpg|jpeg|jpe' => 'image/jpeg', 'gif' => 'image/gif', 'png' => 'image/png', 'bmp' => 'image/bmp', 'tif|tiff' => 'image/tiff', 'ico' => 'image/x-icon', ); // Return an array with file extension and mime_type. $file = wp_check_filetype( $image, $mimes ); // If $image has a valid mime_type, return it; otherwise, return the default. return ( $file['ext'] ? $image : $setting->default ); } endif; /** * switch option (show/hide) * * @since 1.0.0 */ function wp_commerce_sanitize_switch_option( $input ) { $valid_keys = array( 'show' => __( 'Show', 'wp-commerce' ), 'hide' => __( 'Hide', 'wp-commerce' ) ); if ( array_key_exists( $input, $valid_keys ) ) { return $input; } else { return ''; } } /** * Sanitize repeater value * * @since 1.0.0 */ function wp_commerce_sanitize_repeater( $input, $setting ){ $input_decoded = json_decode( $input, true ); $default_decoded = json_decode( $setting->default, true ); $wp_commerce_icon_array = array_flip( wp_commerce_font_awesome_icon_array() ); $wp_commerce_social_icon_array = array_flip( wp_commerce_font_awesome_social_icon_array() ); if( !empty( $input_decoded ) ) { foreach ( $input_decoded as $boxes => $box ){ foreach ( $box as $key => $value ){ if( $key == 'mt_item_url' || $key == 'mt_item_upload' ) { $input_decoded[$boxes][$key] = esc_url_raw( $value ); } elseif( $key == 'mt_item_icon' ) { $default = $default_decoded[ 0 ][ 'mt_item_icon' ]; $input_decoded[ $boxes ][ $key ] = array_key_exists( $value, $wp_commerce_icon_array ) ? $value : $default; } elseif( $key == 'mt_item_social_icon' ) { $default = $default_decoded[ 0 ][ 'mt_item_social_icon' ]; $input_decoded[ $boxes ][ $key ] = array_key_exists( $value, $wp_commerce_social_icon_array ) ? $value : $default; } else { $input_decoded[$boxes][$key] = wp_kses_post( $value ); } } } return json_encode( $input_decoded ); } return $input; } function wp_commerce_sanitize_category($input){ $output=intval($input); return $output; }