| Server IP : 172.67.201.108 / Your IP : 216.73.216.11 Web Server : Apache/2.4.68 (Amazon Linux) OpenSSL/3.5.5 System : Linux ip-172-31-69-123.ec2.internal 6.1.176-223.369.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Jul 24 13:34:27 UTC 2026 x86_64 User : ec2-user ( 1000) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/etdchicago/wp-content/plugins123/header-footer-elementor/ |
Upload File : |
<?php
/**
* Plugin Name: Elementor Header & Footer Builder
* Plugin URI: https://github.com/Nikschavan/header-footer-elementor
* Description: This powerful plugin allows creating a custom header, footer with Elementor and display them on selected locations. You can also create custom Elementor blocks and place them anywhere on the website with a shortcode.
* Author: Brainstorm Force, Nikhil Chavan
* Author URI: https://www.brainstormforce.com/
* Text Domain: header-footer-elementor
* Domain Path: /languages
* Version: 1.6.28
* Elementor tested up to: 3.21
* Elementor Pro tested up to: 3.21
*
* @package header-footer-elementor
*/
define( 'HFE_VER', '1.6.28' );
define( 'HFE_FILE', __FILE__ );
define( 'HFE_DIR', plugin_dir_path( __FILE__ ) );
define( 'HFE_URL', plugins_url( '/', __FILE__ ) );
define( 'HFE_PATH', plugin_basename( __FILE__ ) );
define( 'HFE_DOMAIN', trailingslashit( 'https://ultimateelementor.com' ) );
/**
* Load the class loader.
*/
require_once HFE_DIR . '/inc/class-header-footer-elementor.php';
/**
* Load the Plugin Class.
*/
function hfe_plugin_activation() {
update_option( 'hfe_plugin_is_activated', 'yes' );
}
register_activation_hook( HFE_FILE, 'hfe_plugin_activation' );
/**
* Load the Plugin Class.
*/
function hfe_init() {
Header_Footer_Elementor::instance();
}
add_action( 'plugins_loaded', 'hfe_init' );