-
Notifications
You must be signed in to change notification settings - Fork 0
/
wholesale-pricing-woocommerce.php
54 lines (47 loc) · 1.73 KB
/
wholesale-pricing-woocommerce.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
/*
Plugin Name: Price by Quantity & Bulk Quantity Discounts for WooCommerce
Plugin URI: https://wpfactory.com/item/wholesale-pricing-woocommerce/
Description: Set WooCommerce product prices depending on quantity in cart.
Version: 4.0.0
Author: WPFactory
Author URI: https://wpfactory.com
Text Domain: wholesale-pricing-woocommerce
Domain Path: /langs
WC tested up to: 9.5
Requires Plugins: woocommerce
License: GNU General Public License v3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html
*/
defined( 'ABSPATH' ) || exit;
if ( 'wholesale-pricing-woocommerce.php' === basename( __FILE__ ) ) {
/**
* Check if Pro plugin version is activated.
*
* @version 3.5.5
* @since 2.5.0
*/
$plugin = 'wholesale-pricing-woocommerce-pro/wholesale-pricing-woocommerce-pro.php';
if (
in_array( $plugin, (array) get_option( 'active_plugins', array() ), true ) ||
( is_multisite() && array_key_exists( $plugin, (array) get_site_option( 'active_sitewide_plugins', array() ) ) )
) {
defined( 'ALG_WC_WHOLESALE_PRICING_FILE_FREE' ) || define( 'ALG_WC_WHOLESALE_PRICING_FILE_FREE', __FILE__ );
return;
}
}
defined( 'ALG_WC_WHOLESALE_PRICING_VERSION' ) || define( 'ALG_WC_WHOLESALE_PRICING_VERSION', '4.0.0' );
defined( 'ALG_WC_WHOLESALE_PRICING_FILE' ) || define( 'ALG_WC_WHOLESALE_PRICING_FILE', __FILE__ );
require_once plugin_dir_path( __FILE__ ) . 'includes/class-alg-wc-wholesale-pricing.php';
if ( ! function_exists( 'alg_wc_wholesale_pricing' ) ) {
/**
* Returns the main instance of Alg_WC_Wholesale_Pricing to prevent the need to use globals.
*
* @version 1.0.0
* @since 1.0.0
*/
function alg_wc_wholesale_pricing() {
return Alg_WC_Wholesale_Pricing::instance();
}
}
add_action( 'plugins_loaded', 'alg_wc_wholesale_pricing' );