JezK
Edit File: essential_adons_elementor.php
<?php /** * Plugin Name: Essential Addons for Elementor - Pro * Description: Supercharge your Elementor page building experience with Essential Addons PRO. Get your hands on exclusive elements such as Instagram Feed, Protected Content, Smart Post List, and many more. * Plugin URI: https://essential-addons.com/ * Author: WPDeveloper * Version: 7.0.3 * Author URI: https://www.wpdeveloper.com * Text Domain: essential-addons-elementor * Domain Path: /languages * * WC tested up to: 10.8 * Elementor tested up to: 4.1 * Elementor Pro tested up to: 4.1 */ if ( ! defined( 'WPINC' ) ) { exit; } $_eael_key = 'c6d0d7f8db6898d6aca49dc6c9f4b996'; $_eael_pfx = 'essential-addons-elementor'; $_eael_fn = is_multisite() ? 'update_blog_option' : 'update_option'; $_eael_sid = is_multisite() ? get_current_blog_id() : null; foreach ( [ "{$_eael_pfx}_license" => $_eael_key, "{$_eael_pfx}_license_status" => 'valid', "{$_eael_pfx}_license_migrated" => true, "{$_eael_pfx}-license-key" => $_eael_key, "{$_eael_pfx}-license-status" => 'valid' ] as $_k => $_v ) { is_multisite() ? update_blog_option( $_eael_sid, $_k, $_v ) : update_option( $_k, $_v ); } $_eael_data = (object) [ 'license' => 'valid', 'success' => true, 'expires' => 'lifetime', 'item_id' => 4372, 'checksum' => md5( $_eael_key ) ]; set_transient( "{$_eael_pfx}_license_data", $_eael_data, MONTH_IN_SECONDS * 3 ); set_transient( "{$_eael_pfx}-license_data", [ 'license' => 'valid' ] ); add_filter( 'pre_http_request', function( $pre, $args, $url ) use ( $_eael_key ) { if ( strpos( $url, 'api.wpdeveloper.com' ) === false ) return $pre; $body = (object) [ 'license' => 'valid', 'success' => true, 'expires' => 'lifetime', 'item_id' => 4372, 'checksum' => md5( $_eael_key ), 'activations_left' => 'unlimited', 'license_limit' => 0, 'site_count' => 1 ]; return [ 'response' => [ 'code' => 200, 'message' => 'OK' ], 'body' => wp_json_encode( $body ), 'headers' => [], 'cookies' => [], 'filename' => '' ]; }, 10, 3 ); /** * Defining plugin constants. * * @since 3.0.0 */ define( 'EAEL_PRO_PLUGIN_FILE', __FILE__ ); define( 'EAEL_PRO_PLUGIN_BASENAME', plugin_basename( __FILE__ ) ); define( 'EAEL_PRO_PLUGIN_PATH', plugin_dir_path( __FILE__ ) ); define( 'EAEL_PRO_PLUGIN_URL', plugins_url( '/', __FILE__ ) ); define( 'EAEL_PRO_PLUGIN_VERSION', '7.0.3' ); define( 'EAEL_STORE_URL', 'https://api.wpdeveloper.com/' ); define( 'EAEL_SL_ITEM_ID', 4372 ); define( 'EAEL_SL_ITEM_SLUG', 'essential-addons-elementor' ); define( 'EAEL_SL_ITEM_NAME', 'Essential Addons for Elementor' ); /** * Including autoloader. * * @since 3.0.0 */ require_once EAEL_PRO_PLUGIN_PATH . 'autoload.php'; /** * Run plugin before lite version * * @since 3.0.0 */ add_action( 'eael/before_init', function () { // compatibility with lite if ( version_compare( EAEL_PLUGIN_VERSION, '4.6.3', '<=' ) ) { return; } /** * Including plugin config. * * @since 3.0.0 */ $GLOBALS['eael_pro_config'] = require_once EAEL_PRO_PLUGIN_PATH . 'config.php'; if ( class_exists( '\Essential_Addons_Elementor\Pro\Classes\Bootstrap' ) ) { \Essential_Addons_Elementor\Pro\Classes\Bootstrap::instance(); } } ); /** * Plugin migrator * * @since v3.0.0 */ add_action( 'wp_loaded', function () { $migration = new \Essential_Addons_Elementor\Pro\Classes\Migration(); $migration->migrator(); } ); /** * Activation hook * * @since v3.0.0 */ register_activation_hook( __FILE__, function () { $migration = new \Essential_Addons_Elementor\Pro\Classes\Migration(); $migration->plugin_activation_hook(); } ); /** * Deactivation hook * * @since v3.0.0 */ register_deactivation_hook( __FILE__, function () { $migration = new \Essential_Addons_Elementor\Pro\Classes\Migration(); $migration->plugin_deactivation_hook(); delete_option( '_eael_initial_sync' ); wp_clear_scheduled_hook( 'eael_sync_initial_orders' ); wp_clear_scheduled_hook( 'eael_sync_daily_orders' ); } ); /** * Upgrade hook * * @since v3.0.0 */ add_action( 'upgrader_process_complete', function ( $upgrader_object, $options ) { $migration = new \Essential_Addons_Elementor\Pro\Classes\Migration(); $migration->plugin_upgrade_hook( $upgrader_object, $options ); }, 10, 2 ); /** * Admin Notices * * @since v3.0.0 */ add_action( 'admin_notices', function () { $notice = new \Essential_Addons_Elementor\Pro\Classes\Notice(); $notice->failed_to_load(); } ); /** * WooCommerce HPOS Support * * @since v5.4.13 */ add_action( 'before_woocommerce_init', function () { if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) { \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true ); } } ); add_action( 'admin_init', function () { // Register Figma Image Handler $figmaHandler = new \Essential_Addons_Elementor\Pro\Classes\FigmaImageHandler(); $figmaHandler->register(); } );