OwlCyberSecurity - MANAGER
Edit File: sanitize-functions.php
<?php /** * Includes sanitize functions * * @package Digital Newspaper * @since 1.0.0 */ if( !function_exists( 'digital_newspaper_sanitize_toggle_control' ) ) : /** * Sanitize customizer toggle control value * * @package Digital Newspaper * @since 1.0.0 */ function digital_newspaper_sanitize_toggle_control($value) { return rest_sanitize_boolean( $value ); } endif; if( !function_exists( 'digital_newspaper_sanitize_url' ) ) : /** * Sanitize customizer url control value * * @package Digital Newspaper * @since 1.0.0 */ function digital_newspaper_sanitize_url($value) { return esc_url_raw($value); } endif; if( !function_exists( 'digital_newspaper_sanitize_select_control' ) ) : /** * Sanitize customizer select control value * * @package Digital Newspaper * @since 1.0.0 */ function digital_newspaper_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( 'digital_newspaper_sanitize_number_range' ) ) : /** * Sanitize range slider control value * * @package Digital Newspaper * @since 1.0.0 */ function digital_newspaper_sanitize_number_range($number, $setting) { // Ensure input is an absolute integer. $number = absint($number); // 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 <= $number && $number <= $max && is_int($number / $step) ? $number : $setting->default ); } endif; if( !function_exists( 'digital_newspaper_sanitize_responsive_range' ) ) : /** * Sanitize range slider control value * * @package Digital Newspaper * @since 1.0.0 */ function digital_newspaper_sanitize_responsive_range($range, $setting) { // Ensure input is an absolute integer. foreach( $range as $rangKey => $rang ) : $range[$rangKey] = absint( $rang ); 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_int($range['smartphone'] / $step) && ( $min <= $range['tablet'] && $range['tablet'] <= $max && is_int($range['tablet'] / $step) ? $range : $setting->default ) && ( $min <= $range['desktop'] && $range['desktop'] <= $max && is_int($range['desktop'] / $step) ? $range : $setting->default ) ) ? $range : $setting->default ); } endif; if( !function_exists( 'digital_newspaper_sanitize_array' ) ) : /** * Sanitize array control value * * @package Digital Newspaper * @since 1.0.0 */ function digital_newspaper_sanitize_array( $value ) { return wp_unslash( $value ); } endif; if( !function_exists( 'digital_newspaper_sanitize_responsive_multiselect_control' ) ) : /** * Sanitize responsive multiselect control value * * @package Digital Newspaper * @since 1.0.0 */ function digital_newspaper_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( 'digital_newspaper_sanitize_color_picker_control' ) ) : /** * Sanitize color value * * @package Digital Newspaper * @since 1.0.0 */ function digital_newspaper_sanitize_color_picker_control($color,$setting) { 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, 33 ) === "--digital-newspaper-global-preset") { return $color; } else { $setting->default; } } endif; if( !function_exists( 'digital_newspaper_sanitize_color_group_picker_control' ) ) : /** * Sanitize color group value * * @package Digital Newspaper * @since 1.0.0 */ function digital_newspaper_sanitize_color_group_picker_control($color, $setting) { if( ! isset( $color['color'] ) && ! isset( $color['hover'] ) ) return apply_filters( DIGITAL_NEWSPAPER_PREFIX . 'filtered_color_group_picker_control_value', $setting->default ); if( $color['color'] == null && $color['hover'] == null ) return apply_filters( DIGITAL_NEWSPAPER_PREFIX . 'filtered_color_group_picker_control_value', $color ); foreach( $color as $colorKey => $colorValue ) { $color[$colorKey] = ( $colorValue == null ) ? $colorValue : digital_newspaper_sanitize_color_picker_control($colorValue, (object) ['default'=>$colorValue]); } return apply_filters( DIGITAL_NEWSPAPER_PREFIX . 'filtered_color_group_picker_control_value', $color ); } endif; if( !function_exists( 'digital_newspaper_sanitize_box_control' ) ) : /** * Sanitize box control value * * @package Digital Newspaper * @since 1.0.0 */ function digital_newspaper_sanitize_box_control($box,$setting) { if( ! is_array( $box ) ) return apply_filters( DIGITAL_NEWSPAPER_PREFIX . 'filtered_box_control_value', $setting->default ); return apply_filters( DIGITAL_NEWSPAPER_PREFIX . 'filtered_box_control_value', $box ); } endif; if( !function_exists( 'digital_newspaper_sanitize_color_image_group_control' ) ) : /** * Sanitize color group image control value * * @package Digital Newspaper * @since 1.0.0 */ function digital_newspaper_sanitize_color_image_group_control($value,$setting) { return apply_filters( DIGITAL_NEWSPAPER_PREFIX . 'color_image_group_control_value', wp_kses_post($value) ); } endif; if( !function_exists( 'digital_newspaper_sanitize_repeater_control' ) ) : /** * Sanitize color group image control value * * @package Digital Newspaper * @since 1.0.0 */ function digital_newspaper_sanitize_repeater_control($value,$setting) { return apply_filters( DIGITAL_NEWSPAPER_PREFIX . 'repeater_control_value', wp_kses_post($value) ); } endif; if( !function_exists( 'digital_newspaper_sanitize_sortable_control' ) ) : /** * Sanitize sortable control value * * @package Digital Newspaper * @since 1.0.0 */ function digital_newspaper_sanitize_sortable_control($box,$setting) { if( ! is_array( $box ) ) return apply_filters( DIGITAL_NEWSPAPER_PREFIX . 'sortable_control_value', $setting->default ); return apply_filters( DIGITAL_NEWSPAPER_PREFIX . 'sortable_control_value', $box ); } endif; if( !function_exists( 'digital_newspaper_sanitize_custom_text_control' ) ) : /** * Sanitize custom text value * * @package Digital Newspaper * @since 1.0.0 */ function digital_newspaper_sanitize_custom_text_control($control, $setting) { if( ! isset( $control['icon'] ) || ! isset( $control['text'] ) || ! is_array( $control ) ) return apply_filters( DIGITAL_NEWSPAPER_PREFIX . 'custom_text_control_value', $setting->default ); foreach( $control as $controlKey => $controlValue ) { $control[$controlKey] = esc_html( $controlValue ); } return apply_filters( DIGITAL_NEWSPAPER_PREFIX . 'custom_text_control_value', $control ); } endif; if( !function_exists( 'digital_newspaper_sanitize_get_responsive_integer_value' ) ) : /** * Sanitize number value * * @package Digital Newspaper * @since 1.0.0 */ function digital_newspaper_sanitize_get_responsive_integer_value($value) { $value['desktop'] = isset( $value['desktop'] ) ? absint($value['desktop']) : 0; $value['tablet'] = isset( $value['tablet'] ) ? absint($value['tablet']) : 0; $value['smartphone'] = isset( $value['smartphone'] ) ? absint($value['smartphone']) : 0; return apply_filters( DIGITAL_NEWSPAPER_PREFIX . 'custom_responsive_integer_value', $value ); } endif; if( !function_exists( 'digital_newspaper_sanitize_typo_control' ) ) : /** * Sanitize typo value * * @package Digital Newspaper * @since 1.0.0 */ function digital_newspaper_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'] ) ? digital_newspaper_sanitize_get_responsive_integer_value($control['font_size']) : $setting->default['font_size']; $control['line_height'] = isset( $control['line_height'] ) ? digital_newspaper_sanitize_get_responsive_integer_value($control['line_height']) : $setting->default['line_height']; $control['letter_spacing'] = isset( $control['letter_spacing'] ) ? digital_newspaper_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( DIGITAL_NEWSPAPER_PREFIX . 'typo_control_value', $control ); } endif; if( !function_exists( 'digital_newspaper_sanitize_box_shadow_control' ) ) : /** * Sanitize box shadow value * * @package Digital Newspaper * @since 1.0.0 */ function digital_newspaper_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( DIGITAL_NEWSPAPER_PREFIX . 'box_shadow_control_value', $control ); } endif; if( !function_exists( 'digital_newspaper_sanitize_css_code_control' ) ) : /** * Sanitize css code control value * * @package Digital Newspaper * @since 1.0.0 */ function digital_newspaper_sanitize_css_code_control( $css ) { if ( preg_match( '#</?\w+#', $css ) ) { return ''; } return $css; } endif;