Server IP : 209.38.156.173 / Your IP : 216.73.216.122 [ Web Server : Apache/2.4.52 (Ubuntu) System : Linux lakekumayuhotel 5.15.0-136-generic #147-Ubuntu SMP Sat Mar 15 15:53:30 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.1.2-1ubuntu2.22 Disable Function : NONE Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/wp-content/plugins/header-footer-elementor/themes/astra/ |
Upload File : |
<?php /** * HFE_Astra_Compat setup * * @package header-footer-elementor */ /** * Astra theme compatibility. */ class HFE_Astra_Compat { /** * Instance of HFE_Astra_Compat. * * @var HFE_Astra_Compat */ private static $instance; /** * Initiator */ public static function instance() { if ( ! isset( self::$instance ) ) { self::$instance = new HFE_Astra_Compat(); add_action( 'wp', [ self::$instance, 'hooks' ] ); } return self::$instance; } /** * Run all the Actions / Filters. */ public function hooks() { if ( hfe_header_enabled() ) { add_action( 'template_redirect', [ $this, 'astra_setup_header' ], 10 ); add_action( 'astra_header', 'hfe_render_header' ); } if ( hfe_footer_enabled() ) { add_action( 'template_redirect', [ $this, 'astra_setup_footer' ], 10 ); add_action( 'astra_footer', 'hfe_render_footer' ); } if ( hfe_is_before_footer_enabled() ) { add_action( 'astra_footer_before', 'hfe_render_before_footer' ); } } /** * Disable header from the theme. */ public function astra_setup_header() { remove_action( 'astra_header', 'astra_header_markup' ); // Remove the new header builder action. if ( class_exists( 'Astra_Builder_Helper' ) && Astra_Builder_Helper::$is_header_footer_builder_active ) { remove_action( 'astra_header', [ Astra_Builder_Header::get_instance(), 'prepare_header_builder_markup' ] ); } } /** * Disable footer from the theme. */ public function astra_setup_footer() { remove_action( 'astra_footer', 'astra_footer_markup' ); // Remove the new footer builder action. if ( class_exists( 'Astra_Builder_Helper' ) && Astra_Builder_Helper::$is_header_footer_builder_active ) { remove_action( 'astra_footer', [ Astra_Builder_Footer::get_instance(), 'footer_markup' ] ); } } } HFE_Astra_Compat::instance();