cl01/wp-content/themes/hester/inc/compatibility/class-hester-elementor-pro.php
2025-02-24 12:39:24 +08:00

198 lines
4.5 KiB
PHP
Executable File

<?php
/**
* Hester compatibility class for Elementor Pro.
*
* @package Hester
* @author Peregrine Themes
* @since 1.0.0
*/
/**
* Do not allow direct script access.
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
// Return if Elementor not active.
if ( ! class_exists( '\Elementor\Plugin' ) || ! class_exists( 'ElementorPro\Modules\ThemeBuilder\Module' ) ) {
return;
}
// PHP 5.3+ is required.
if ( ! version_compare( PHP_VERSION, '5.3', '>=' ) ) {
return;
}
if ( ! class_exists( 'Hester_Elementor_Pro' ) ) :
/**
* Elementor compatibility.
*/
class Hester_Elementor_Pro {
/**
* Singleton instance of the class.
*
* @var object
*/
private static $instance;
/**
* Elementor location manager
*
* @var object
*/
public $elementor_location_manager;
/**
* Instance.
*
* @since 1.0.0
* @return Hester_Elementor_Pro
*/
public static function instance() {
if ( ! isset( self::$instance ) && ! ( self::$instance instanceof Hester_Elementor_Pro ) ) {
self::$instance = new Hester_Elementor_Pro();
}
return self::$instance;
}
/**
* Primary class constructor.
*
* @since 1.0.0
* @return void
*/
public function __construct() {
// Register theme locations.
add_action( 'elementor/theme/register_locations', array( $this, 'register_locations' ) );
// Override templates.
add_action( 'hester_header', array( $this, 'do_header' ), 0 );
add_action( 'hester_footer', array( $this, 'do_footer' ), 0 );
add_action( 'hester_content_404', array( $this, 'do_content_none' ), 0 );
add_action( 'hester_content_single', array( $this, 'do_content_single_post' ), 0 );
add_action( 'hester_content_page', array( $this, 'do_content_single_page' ), 0 );
add_action( 'hester_content_archive', array( $this, 'do_archive' ), 0 );
}
/**
* Register Theme Location for Elementor.
*
* @param object $manager Elementor object.
* @since 1.0.0
* @return void
*/
public function register_locations( $manager ) {
$manager->register_all_core_location();
$this->elementor_location_manager = \ElementorPro\Modules\ThemeBuilder\Module::instance()->get_locations_manager(); // phpcs:ignore PHPCompatibility.Syntax.NewDynamicAccessToStatic.Found
}
/**
* Override Header.
*
* @since 1.0.0
* @return void
*/
public function do_header() {
$did_location = $this->elementor_location_manager->do_location( 'header' );
if ( $did_location ) {
remove_action( 'hester_header', 'hester_topbar_output', 10 );
remove_action( 'hester_header', 'hester_header_output', 20 );
}
}
/**
* Override Footer.
*
* @since 1.0.0
* @return void
*/
public function do_footer() {
$did_location = $this->elementor_location_manager->do_location( 'footer' );
if ( $did_location ) {
remove_action( 'hester_footer', 'hester_footer_output', 20 );
remove_action( 'hester_footer', 'hester_copyright_bar_output', 30 );
}
}
/**
* Override Footer.
*
* @since 1.0.0
* @return void
*/
public function do_content_none() {
if ( ! is_404() ) {
return;
}
$did_location = $this->elementor_location_manager->do_location( 'single' );
if ( $did_location ) {
remove_action( 'hester_content_404', 'hester_404_page_content' );
}
}
/**
* Override Single Post.
*
* @since 1.0.0
* @return void
*/
public function do_content_single_post() {
$did_location = $this->elementor_location_manager->do_location( 'single' );
if ( $did_location ) {
remove_action( 'hester_content_single', 'hester_content_single' );
remove_action( 'hester_after_singular', 'hester_output_comments' );
}
}
/**
* Override Single Page.
*
* @since 1.0.0
* @return void
*/
public function do_content_single_page() {
$did_location = $this->elementor_location_manager->do_location( 'single' );
if ( $did_location ) {
remove_action( 'hester_content_page', 'hester_content_page' );
remove_action( 'hester_after_singular', 'hester_output_comments' );
}
}
/**
* Override Archive.
*
* @since 1.0.0
* @return void
*/
public function do_archive() {
$did_location = $this->elementor_location_manager->do_location( 'archive' );
if ( $did_location ) {
remove_action( 'hester_before_content', 'hester_archive_info' );
remove_action( 'hester_content_archive', 'hester_content' );
}
}
}
endif;
/**
* Returns the one Hester_Elementor_Pro instance.
*/
function hester_elementor_pro() {
return Hester_Elementor_Pro::instance();
}
hester_elementor_pro();