/** * WIDGET component. * * @package Astra Builder * @author Brainstorm Force * @copyright Copyright (c) 2020, Brainstorm Force * @link https://www.brainstormforce.com * @since Astra 3.0.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } define( 'ASTRA_BUILDER_HEADER_WIDGET_DIR', ASTRA_THEME_DIR . 'inc/builder/type/header/widget' ); define( 'ASTRA_BUILDER_HEADER_WIDGET_URI', ASTRA_THEME_URI . 'inc/builder/type/header/widget' ); /** * Heading Initial Setup * * @since 3.0.0 */ class Astra_Header_Widget_Component { /** * Constructor function that initializes required actions and hooks */ public function __construct() { // @codingStandardsIgnoreStart WPThemeReview.CoreFunctionality.FileInclude.FileIncludeFound require_once ASTRA_BUILDER_HEADER_WIDGET_DIR . '/class-astra-header-widget-component-loader.php'; // Include front end files. if ( ! is_admin() || Astra_Builder_Customizer::astra_collect_customizer_builder_data() ) { require_once ASTRA_BUILDER_HEADER_WIDGET_DIR . '/dynamic-css/dynamic.css.php'; } // @codingStandardsIgnoreEnd WPThemeReview.CoreFunctionality.FileInclude.FileIncludeFound } } /** * Kicking this off by creating an object. */ new Astra_Header_Widget_Component();/** * WIDGET Styling Loader for Astra theme. * * @package Astra Builder * @author Brainstorm Force * @copyright Copyright (c) 2020, Brainstorm Force * @link https://www.brainstormforce.com * @since Astra 3.0.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * Customizer Initialization * * @since 3.0.0 */ class Astra_Footer_Widget_Component_Loader { /** * Constructor * * @since 3.0.0 */ public function __construct() { add_action( 'customize_preview_init', array( $this, 'preview_scripts' ), 110 ); } /** * Customizer Preview * * @since 3.0.0 */ public function preview_scripts() { /** * Load unminified if SCRIPT_DEBUG is true. */ /* Directory and Extension */ $dir_name = ( SCRIPT_DEBUG ) ? 'unminified' : 'minified'; $file_prefix = ( SCRIPT_DEBUG ) ? '' : '.min'; wp_enqueue_script( 'astra-footer-widget-customizer-preview-js', ASTRA_BUILDER_FOOTER_WIDGET_URI . '/assets/js/' . $dir_name . '/customizer-preview' . $file_prefix . '.js', array( 'customize-preview', 'astra-customizer-preview-js' ), ASTRA_THEME_VERSION, true ); // Localize variables for WIDGET JS. wp_localize_script( 'astra-footer-widget-customizer-preview-js', 'AstraBuilderWidgetData', array( 'footer_widget_count' => defined( 'ASTRA_EXT_VER' ) ? Astra_Builder_Helper::$component_limit : Astra_Builder_Helper::$num_of_footer_widgets, 'tablet_break_point' => astra_get_tablet_breakpoint(), 'mobile_break_point' => astra_get_mobile_breakpoint(), 'is_flex_based_css' => Astra_Builder_Helper::apply_flex_based_css(), 'has_block_editor' => astra_has_widgets_block_editor(), ) ); } } /** * Kicking this off by creating the object of the class. */ new Astra_Footer_Widget_Component_Loader();/** * Deprecated Functions of Astra Theme. * * @package Astra * @author Astra * @copyright Copyright (c) 2020, Astra * @link https://wpastra.com/ * @since Astra 1.0.23 */ if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Deprecating footer_menu_static_css function. * * Footer menu specific static CSS function. * * @since 3.7.4 * @deprecated footer_menu_static_css() Use astra_footer_menu_static_css() * @see astra_footer_menu_static_css() * * @return string Parsed CSS */ function footer_menu_static_css() { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_footer_menu_static_css()' ); return astra_footer_menu_static_css(); } /** * Deprecating is_support_footer_widget_right_margin function. * * Backward managing function based on flag - 'support-footer-widget-right-margin' which fixes right margin issue in builder widgets. * * @since 3.7.4 * @deprecated is_support_footer_widget_right_margin() Use astra_support_footer_widget_right_margin() * @see astra_support_footer_widget_right_margin() * * @return bool true|false */ function is_support_footer_widget_right_margin() { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_support_footer_widget_right_margin()' ); return astra_support_footer_widget_right_margin(); } /** * Deprecating prepare_button_defaults function. * * Default configurations for builder button components. * * @since 3.7.4 * @deprecated prepare_button_defaults() Use astra_prepare_button_defaults() * @param array $defaults Button default configs. * @param string $index builder button component index. * @see astra_prepare_button_defaults() * * @return array */ function prepare_button_defaults( $defaults, $index ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_prepare_button_defaults()' ); return astra_prepare_button_defaults( $defaults, absint( $index ) ); } /** * Deprecating prepare_html_defaults function. * * Default configurations for builder HTML components. * * @since 3.7.4 * @deprecated prepare_html_defaults() Use astra_prepare_html_defaults() * @param array $defaults HTML default configs. * @param string $index builder HTML component index. * @see astra_prepare_html_defaults() * * @return array */ function prepare_html_defaults( $defaults, $index ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_prepare_html_defaults()' ); return astra_prepare_html_defaults( $defaults, absint( $index ) ); } /** * Deprecating prepare_social_icon_defaults function. * * Default configurations for builder Social Icon components. * * @since 3.7.4 * @deprecated prepare_social_icon_defaults() Use astra_prepare_social_icon_defaults() * @param array $defaults Social Icon default configs. * @param string $index builder Social Icon component index. * @see astra_prepare_social_icon_defaults() * * @return array */ function prepare_social_icon_defaults( $defaults, $index ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_prepare_social_icon_defaults()' ); return astra_prepare_social_icon_defaults( $defaults, absint( $index ) ); } /** * Deprecating prepare_widget_defaults function. * * Default configurations for builder Widget components. * * @since 3.7.4 * @deprecated prepare_widget_defaults() Use astra_prepare_widget_defaults() * @param array $defaults Widget default configs. * @param string $index builder Widget component index. * @see astra_prepare_widget_defaults() * * @return array */ function prepare_widget_defaults( $defaults, $index ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_prepare_widget_defaults()' ); return astra_prepare_widget_defaults( $defaults, absint( $index ) ); } /** * Deprecating prepare_menu_defaults function. * * Default configurations for builder Menu components. * * @since 3.7.4 * @deprecated prepare_menu_defaults() Use astra_prepare_menu_defaults() * @param array $defaults Menu default configs. * @param string $index builder Menu component index. * @see astra_prepare_menu_defaults() * * @return array */ function prepare_menu_defaults( $defaults, $index ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_prepare_menu_defaults()' ); return astra_prepare_menu_defaults( $defaults, absint( $index ) ); } /** * Deprecating prepare_divider_defaults function. * * Default configurations for builder Divider components. * * @since 3.7.4 * @deprecated prepare_divider_defaults() Use astra_prepare_divider_defaults() * @param array $defaults Divider default configs. * @param string $index builder Divider component index. * @see astra_prepare_divider_defaults() * * @return array */ function prepare_divider_defaults( $defaults, $index ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_prepare_divider_defaults()' ); return astra_prepare_divider_defaults( $defaults, absint( $index ) ); } /** * Deprecating is_astra_pagination_enabled function. * * Checking if Astra's pagination enabled. * * @since 3.7.4 * @deprecated is_astra_pagination_enabled() Use astra_check_pagination_enabled() * @see astra_check_pagination_enabled() * * @return bool true|false */ function is_astra_pagination_enabled() { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_check_pagination_enabled()' ); return astra_check_pagination_enabled(); } /** * Deprecating is_current_post_comment_enabled function. * * Checking if current post's comment enabled and comment section is open. * * @since 3.7.4 * @deprecated is_current_post_comment_enabled() Use astra_check_current_post_comment_enabled() * @see astra_check_current_post_comment_enabled() * * @return bool true|false */ function is_current_post_comment_enabled() { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_check_current_post_comment_enabled()' ); return astra_check_current_post_comment_enabled(); } /** * Deprecating ast_load_preload_local_fonts function. * * Preload Google Fonts - Feature of self-hosting font. * * @since 3.7.4 * @deprecated ast_load_preload_local_fonts() Use astra_load_preload_local_fonts() * @param string $google_font_url Google Font URL generated by customizer config. * @see astra_load_preload_local_fonts() * * @return string */ function ast_load_preload_local_fonts( $google_font_url ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_load_preload_local_fonts()' ); return astra_load_preload_local_fonts( $google_font_url ); } /** * Deprecating ast_get_webfont_url function. * * Getting webfont based Google font URL. * * @since 3.7.4 * @deprecated ast_get_webfont_url() Use astra_get_webfont_url() * @param string $google_font_url Google Font URL generated by customizer config. * @see astra_get_webfont_url() * * @return string */ function ast_get_webfont_url( $google_font_url ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_get_webfont_url()' ); return astra_get_webfont_url( $google_font_url ); } Dommus Innovation https://validator.w3.org/feed/docs/rss2.html Spielothek ferner Kasino Prämie bloß Einzahlung Promo Codes für goldbet inoffizieller mitarbeiter Siebenter monat des jahres 2026 Dazard Casino in Italien: Eine umfassende Übersicht Axecasino VIP Spieler: Exklusive Vorteile und Angebote Trans Dating Site Assessment – The best Tools Sincerely Uplift the Trans-friendly Community Tragaperras De balde Hace el trabajo dentro del Segundo en Alguna 5000 Juegos para lord of the ocean Ranura sin bonificación de depósito Distracción referente a Casino Pearls Tragamonedas tres amigos Juego de bonificación Bar Slots Gratuito:, 4000 Jugar crystal forest Slot Tragamonedas Carente Soltar Spinata Grande Máquina Tragamonedas Vano Ranura lord of the ocean de camino Funciona de Divertirte NetEnt Twin Spin Tragaperras Tratar Gratuito Sus Mira esto particulares 2026 Tragamonedas online Twin Spin ver este sitio Soluciona de balde falto descargas Ontdek de spanning van Rakoo Casino met Nolimit City slots quince Giros Falto Tanque ming dynasty casino Bonos Para Registrarte 2026 cincuenta Tiradas Gratuito desprovisto Depósito acerca de netent juegos de pokie Chile Julio 2026 Rakoo Casino VIP Spieler: Exklusiver Zugang und Vorteile Z. b. wanneer Gratis Spins, welches ubersetzt in etwa Gratisdrehs bedeutet Spinsy Casino Wettanforderungen Erklärt Attributes details that stand out upon the chatrad network What kind of Toward-line gambling enterprise A lot more Are you willing to Claim? End condition-of-the-art proposition bets up until you’re alot more continuously the net online game WooPlus Advantages and Disadvantages You Should Learn About Before Trying Understanding Cashed Casino Closed Account Issues What kind of Internet casino Incentive Do you really Claim? Kostenlose Bingo Spiele Durchsetzbar Steckplatz Duck Shooter Bingo zum Entzückung zum besten 50 kostenlose Spins the money game bei Registrierung ohne Einzahlung gerieren Lizenziertes secret of nefertiti Casino Verbunden Casino Beste Online Spielbank Maklercourtage Angebote im Siebenter monat des jahres 2026 within 80 day adventure hd Mobile das Syllabus Beste Versorger Asena Einzahlung durch 1  inoffizieller Untersuchen Eltern einander diese inter seite aktiv mitarbeiter Im Casino Rizk Rückzug jahre 2023 & Boni Norway EN Beste Ernährer Asena Einzahlung bei 1  inoffizieller Beäugen Die leser sich diese seite angeschaltet arbeitskollege Jahr 2023 & Boni 50 kostenlose Spins auf book of ra 6 Keine Einzahlung Norway EN Tops vorteilhaft Hot Zone Online -Slot angeschlossen shoppen Beste Provider Asena Einzahlung durch 1  inoffizieller Schauen Eltern einander diese webseite aktiv Sieh dir das an kollege Im jahre 2023 & Boni Norway EN Casinos unter Online -Casino american express einsatz von 1 Ecu Einzahlung 2026: An dieser stelle geht dies Beste Anbieter Asena Einzahlung durch 1  inoffizieller Untersuchen Sie Sizzling Hot Deluxe offline apk gegenseitig diese website aktiv arbeitskollege Im jahre 2023 & Boni Norway EN Where Verbunden Play boomerang bonanza Slot online Meets Natürlich Money Wins 50 Freispiele für phoenix sun Slot -Bonus jedes 1 Euro, Casinos qua 1 Euroletten Einzahlung Book Hunt Individuelles Casino Online holdem Verschlingen & Untersuchen Starburst Slot bei NetEnt as part queen of hearts deluxe Slot online of Teutonia RTP, Funktionen Feinheiten Beste Ernährer Asena Einzahlung bei 1  inoffizieller Beobachten Die leser gegenseitig diese seite eingeschaltet arbeitskollege Anno Slot secret of nefertiti 2 2023 & Boni Norway EN Eye of Horus Tricks, Tipps, Prämie enthüllt $ 5 Einzahlung Casino book of ra 2026 אופנת יהלום Kursy morskie STCW Ośrodek Szkolenia Zawodowego Gospodarki Morskiej Unser besten Momente nicht mehr da The 50 Sämtliche Kandidaten kostenlose Spins keine Einzahlung golden quest unter anderem Spiele Casinos via 1 Eur Einzahlung 2026: Bei keramiken geht MR BET 100 KEINE DENLAY FREE SPINs welches 100% Provision so weit spartacus Online -Slot wie 1 500, 200 Freispiele Verbunden Casinos gebührenfrei: Beste 25 Anbieter 2026 MR BET 70 kostenlose Spins keine Einzahlung wanneer Verzeichnis Verbunden Slot book of ra Spielbank Freispiele abzüglich Einzahlung pro Julei Verbunden Spielsaal captain nelson deluxe Spielplatz Prämie Schweiz Siebenter monat des jahres 2026 Aktuelle Angebote 300% Spielbank Provision in blaze of ra Spielautomat die gute Einzahlung inside Deutschland 2 231 Kasino Spiele für nüsse aufführen exklusive 10 euro bonus ohne einzahlung casino 2026 Anmeldung Eye of Horus Tricks, Tipps, Provision enthüllt 2026 Slot lucky drink אופנת יהלום Kursy morskie STCW Ośrodek Szkolenia Zawodowego Gospodarki Morskiej 15 Eur red cliff $ 1 Kaution Spielsaal Maklercourtage ohne Einzahlung 2026 No Abschlagzahlung Arriva Deutschland Die Casino attack on retro Slot bahn Arriva Asena Casino Safari Madness Welcome