-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstock-snapshot-for-woocommerce.php
57 lines (50 loc) · 1.69 KB
/
stock-snapshot-for-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
55
56
57
<?php
/*
Plugin Name: Stock History & Reports Manager for WooCommerce
Plugin URI: https://wpfactory.com/item/stock-snapshot-for-woocommerce/
Description: Keep track of your products stock in WooCommerce.
Version: 2.1.1
Author: WPFactory
Author URI: https://wpfactory.com
Text Domain: stock-snapshot-for-woocommerce
Domain Path: /langs
WC tested up to: 9.8
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 ( 'stock-snapshot-for-woocommerce.php' === basename( __FILE__ ) ) {
/**
* Check if Pro plugin version is activated.
*
* @version 1.4.0
* @since 1.1.0
*/
$plugin = 'stock-snapshot-for-woocommerce-pro/stock-snapshot-for-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_STOCK_SNAPSHOT_FILE_FREE' ) || define( 'ALG_WC_STOCK_SNAPSHOT_FILE_FREE', __FILE__ );
return;
}
}
defined( 'ALG_WC_STOCK_SNAPSHOT_VERSION' ) || define( 'ALG_WC_STOCK_SNAPSHOT_VERSION', '2.1.1' );
defined( 'ALG_WC_STOCK_SNAPSHOT_FILE' ) || define( 'ALG_WC_STOCK_SNAPSHOT_FILE', __FILE__ );
require_once plugin_dir_path( __FILE__ ) . 'includes/class-alg-wc-stock-snapshot.php';
if ( ! function_exists( 'alg_wc_stock_snapshot' ) ) {
/**
* Returns the main instance of Alg_WC_Stock_Snapshot to prevent the need to use globals.
*
* @version 1.0.0
* @since 1.0.0
*/
function alg_wc_stock_snapshot() {
return Alg_WC_Stock_Snapshot::instance();
}
}
add_action( 'plugins_loaded', 'alg_wc_stock_snapshot' );