Server IP : 104.21.38.3 / Your IP : 172.71.124.59 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/wwwroot/audiomatrix.in/wp-content/plugins/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.22 * Elementor tested up to: 3.18 * Elementor Pro tested up to: 3.18 * * @package header-footer-elementor */ define( 'HFE_VER', '1.6.22' ); 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' );