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( 'boutique_shop_dropdown_pages' ) ) : function boutique_shop_dropdown_pages( $page_id, $setting ) { // Ensure $input is an absolute integer. $page_id = absint( $page_id ); // If $page_id is an ID of a published page, return it; otherwise, return the default. return ( 'publish' == get_post_status( $page_id ) ? $page_id : $setting->default ); } endif; if ( ! function_exists( 'boutique_shop_dropdown_posts' ) ) : /** * Post Dropdown. * * @since 1.0.0 * */ function boutique_shop_dropdown_posts() { $posts = get_posts( array( 'numberposts' => -1 ) ); $choices = array(); $choices[0] = esc_html__( '--Select--', 'boutique-shop' ); foreach ( $posts as $post ) { $choices[$post->ID] = $post->post_title; } return $choices; } endif; if ( ! function_exists( 'boutique_shop_sanitize_checkbox' ) ) : /** * Sanitize checkbox. * * @since 1.0.0 * */ function boutique_shop_sanitize_checkbox( $checked ) { return ( ( isset( $checked ) && true === $checked ) ? true : false ); } endif; if ( ! function_exists( 'boutique_shop_sanitize_number_range' ) ) : /** * Sanitize number range. * */ function boutique_shop_sanitize_number_range( $input, $setting ) { // Ensure input is an absolute integer. $input = absint( $input ); // Get the input attributes associated with the setting. $atts = $setting->manager->get_control( $setting->id )->input_attrs; // Get min. $min = ( isset( $atts['min'] ) ? $atts['min'] : $input ); // Get max. $max = ( isset( $atts['max'] ) ? $atts['max'] : $input ); // Get Step. $step = ( isset( $atts['step'] ) ? $atts['step'] : 1 ); // If the input is within the valid range, return it; otherwise, return the default. return ( $min <= $input && $input <= $max && is_int( $input / $step ) ? $input : $setting->default ); } endif; if ( ! function_exists( 'boutique_shop_sanitize_textarea_content' ) ) : /** * Sanitize textarea content. * * @since 1.0.0 * */ function boutique_shop_sanitize_textarea_content( $input, $setting ) { return ( stripslashes( wp_filter_post_kses( addslashes( $input ) ) ) ); } endif; /** * Sanitize the text alignment options. * * @param string $input The input to be sanitized. * @return string The sanitized input. */ function boutique_shop_sanitize_text_alignment($input) { $valid = array('left', 'center', 'right'); if (in_array($input, $valid, true)) { return $input; } return 'left'; } // Sanitize Font Weight function boutique_shop_sanitize_font_weight( $value ) { $valid = array( '100', '200', '300', '400', '500', '600', '700', '800', '900' ); return in_array( $value, $valid ) ? $value : '400'; } // Sanitize Text Transform function boutique_shop_sanitize_text_transform( $value ) { $valid = array( 'none', 'capitalize', 'uppercase', 'lowercase' ); return in_array( $value, $valid ) ? $value : 'none'; } /*------------------------------------------------------------------------*/ function boutique_shop_sanitize_scroll_top_alignment($input) { $valid = array('right-align', 'center-align', 'left-align'); if (in_array($input, $valid, true)) { return $input; } return 'right-align'; } /*------------------------------------------------------------------------*/ function boutique_shop_sanitize_pagination_alignment($input) { $valid = array('right-align', 'center-align', 'left-align'); if (in_array($input, $valid, true)) { return $input; } return 'left-align'; } /*------------------------------------------------------------------------*/ // Sanitize Sortable control. function boutique_shop_sanitize_sortable( $val, $setting ) { if ( is_string( $val ) || is_numeric( $val ) ) { return array( esc_attr( $val ), ); } $sanitized_value = array(); foreach ( $val as $item ) { if ( isset( $setting->manager->get_control( $setting->id )->choices[ $item ] ) ) { $sanitized_value[] = esc_attr( $item ); } } return $sanitized_value; }