Done !
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/yeslicense.org/wp-content/plugins/woo-wallet/ |
Upload File : |
<?php /** * Plugin Name: TeraWallet * Plugin URI: https://standalonetech.com/ * Description: The leading wallet plugin for WooCommerce with partial payment, refunds, cashbacks and what not! * Version: 1.5.13 * Requires Plugins: woocommerce * Author: StandaloneTech * Author URI: https://standalonetech.com/ * Text Domain: woo-wallet * Domain Path: /languages/ * Requires at least: 6.4 * Tested up to: 6.8 * * @package StandaleneTech */ if ( ! defined( 'ABSPATH' ) ) { exit; } // Define WOO_WALLET_PLUGIN_FILE. if ( ! defined( 'WOO_WALLET_PLUGIN_FILE' ) ) { define( 'WOO_WALLET_PLUGIN_FILE', __FILE__ ); } // Define WOO_WALLET_ABSPATH. if ( ! defined( 'WOO_WALLET_ABSPATH' ) ) { define( 'WOO_WALLET_ABSPATH', dirname( WOO_WALLET_PLUGIN_FILE ) . '/' ); } // Define WOO_WALLET_PLUGIN_VERSION. if ( ! defined( 'WOO_WALLET_PLUGIN_VERSION' ) ) { define( 'WOO_WALLET_PLUGIN_VERSION', '1.5.13' ); } // include dependencies file. if ( ! class_exists( 'Woo_Wallet_Dependencies' ) ) { include_once __DIR__ . '/includes/class-woo-wallet-dependencies.php'; } // Include the main class. if ( ! class_exists( 'Woo_Wallet' ) ) { include_once __DIR__ . '/includes/class-woo-wallet.php'; } /** * Returns the main instance of Woo_Wallet. * * @since 1.1.0 * @return Woo_Wallet */ function woo_wallet() { return Woo_Wallet::instance(); } $GLOBALS['woo_wallet'] = woo_wallet();