/>


$athm_option_title) { if( isset( $online_estore_widget_field_value[$athm_option_name] ) ) { $online_estore_widget_field_value[$athm_option_name] = 1; }else{ $online_estore_widget_field_value[$athm_option_name] = 0; } ?>

/>

'; foreach ( $online_estore_widgets_field_options as $option => $val ){ $class = ( $online_estore_widget_field_value == $option ) ? 'selector-selected': ''; echo ''; } echo ''; echo ''; break; /** * Upload field */ case 'upload': $image = $image_class = ""; if( $online_estore_widget_field_value ){ $image = ''; $image_class = ' hidden'; } ?>



'; } return wp_kses_data($new_field_value, $online_estore_widgets_allowed_tags); } elseif ( $online_estore_widgets_field_type == 'url' ) { return esc_url( $new_field_value ); }elseif ($online_estore_widgets_field_type == 'title') { return wp_kses_post($new_field_value); }elseif( $online_estore_widgets_field_type == 'multicheckboxes' ) { return serialize($new_field_value); } else { return wp_kses_data( $new_field_value ); } } /** * Register different widgets * * @since 1.0.0 */ function online_estore_register_widgets() { /** * Promo Widget Block */ register_widget( 'online_estore_Promo_Widget_Block' ); /** * Full Promo Display Block */ register_widget( 'online_estore_Full_Promo_Type_Block' ); /** * Blog Posts Display Block */ register_widget( 'online_estore_Blog_Posts_Block' ); /** * About Us Info Display Block */ register_widget( 'online_estore_Aboutus_Info' ); if ( class_exists( 'WooCommerce' ) ) { /** * Multiple Category Collection Display Block */ register_widget( 'online_estore_Multiple_Category_Collection_Block' ); /** * Multiple Category Products Display Block */ register_widget( 'online_estore_Multiple_Category_Products_Block' ); /** * Multiple Category Tabs Display Block */ register_widget( 'online_estore_Multiple_Category_Tabs_Block' ); /** * Tabs Products Type Display Block */ register_widget( 'online_estore_Tabs_Products_Type_Block' ); /** * Single Category Products Display Block */ register_widget( 'online_estore_Single_Category_Products_Block' ); /** * Products Type Display Block */ register_widget( 'online_estore_Products_Type_Block' ); /** * Best Selling Products Block */ register_widget( 'online_estore_Best_Selling_Products_Block' ); /** * On Sale Products Block */ register_widget( 'online_estore_onsale_selling_products_block' ); /** * Top Rated Products Block */ register_widget( 'online_estore_Top_Rated_Selling_Products_Block' ); /** * Category Products Type Display Block */ register_widget( 'online_estore_Category_Products_Type_Block' ); } } add_action( 'widgets_init', 'online_estore_register_widgets' );