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; //============================================================= // Checkbox santitization //============================================================= if ( ! function_exists( 'business_hub_sanitize_checkbox' ) ) : function business_hub_sanitize_checkbox( $input ) { if ( $input == 1 ) { return 1; } else { return ''; } } endif; //============================================================= // Integer Number Sanitization //============================================================= if ( ! function_exists( 'business_hub_sanitize_number' ) ) : function business_hub_sanitize_number( $input, $setting ) { $input = absint( $input ); return ( $input ? $input : $setting->default ); } endif; //============================================================= // Active callback for type of slider //============================================================= if ( ! function_exists( 'business_hub_slider_type_category' ) ) : function business_hub_slider_type_category( $control ) { if( 'slider' == $control->manager->get_setting('business_hub[main_slider_type]')->value() ){ return true; } else { return false; } } endif; //============================================================= // Active callback for type of banner //============================================================= if ( ! function_exists( 'business_hub_slider_type_banner' ) ) : function business_hub_slider_type_banner( $control ) { if( 'banner-image' == $control->manager->get_setting('business_hub[main_slider_type]')->value() ){ return true; } else { return false; } } endif; //============================================================= // Active callback for top header enable/disable //============================================================= if ( ! function_exists( 'business_hub_top_header_show' ) ) : function business_hub_top_header_show( $control ) { if( '1' == $control->manager->get_setting('business_hub[top_bar]')->value() ){ return true; } else { return false; } } endif; //============================================================= // Sanitize html fields //============================================================= if ( ! function_exists( 'business_hub_sanitize_html' ) ) : function business_hub_sanitize_html( $html ) { return wp_filter_post_kses( $html ); } endif; //============================================================= // CSS sanitization //============================================================= if ( ! function_exists( 'business_hub_sanitize_css' ) ) : function business_hub_sanitize_css( $css ) { return wp_strip_all_tags( $css ); } endif;