Server IP : 162.0.217.223 / Your IP : 216.73.216.153 Web Server : LiteSpeed System : Linux premium269.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : mypckeys ( 1539) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/mypckeys/backup/msckey.com/wp-content/plugins/woolentor-addons/ |
Upload File : |
<?php /** * Plugin Name: ShopLentor – WooCommerce Builder for Elementor & Gutenberg * Description: An all-in-one WooCommerce solution to create a beautiful WooCommerce store. * Plugin URI: https://woolentor.com/ * Version: 3.0.2 * Author: HasThemes * Author URI: https://hasthemes.com/plugins/woolentor-pro/ * License: GPL-2.0+ * License URI: http://www.gnu.org/licenses/gpl-2.0.txt * Text Domain: woolentor * Domain Path: /languages * WC tested up to: 9.4.3 * Elementor tested up to: 3.25.10 * Elementor Pro tested up to: 3.25.4 */ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly define( 'WOOLENTOR_VERSION', '3.0.2' ); define( 'WOOLENTOR_ADDONS_PL_ROOT', __FILE__ ); define( 'WOOLENTOR_ADDONS_PL_URL', plugins_url( '/', WOOLENTOR_ADDONS_PL_ROOT ) ); define( 'WOOLENTOR_ADDONS_PL_PATH', plugin_dir_path( WOOLENTOR_ADDONS_PL_ROOT ) ); define( 'WOOLENTOR_ADDONS_DIR_URL', plugin_dir_url( WOOLENTOR_ADDONS_PL_ROOT ) ); define( 'WOOLENTOR_PLUGIN_BASE', plugin_basename( WOOLENTOR_ADDONS_PL_ROOT ) ); define( 'WOOLENTOR_TEMPLATE', trailingslashit( WOOLENTOR_ADDONS_PL_PATH . 'includes/templates' ) ); // Required File require_once ( WOOLENTOR_ADDONS_PL_PATH.'includes/base.php' ); \WooLentor\woolentor(); /** * Gutenbarge Blocks */ require_once ( WOOLENTOR_ADDONS_PL_PATH.'woolentor-blocks/woolentor-blocks.php' ); // Compatible With WooCommerce Custom Order Tables add_action( 'before_woocommerce_init', function() { if ( class_exists( '\Automattic\WooCommerce\Utilities\FeaturesUtil' ) ) { \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true ); } } );