forked from mailchimp/mc-woocommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mailchimp-woocommerce.php
55 lines (48 loc) · 1.83 KB
/
mailchimp-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
/**
* The plugin bootstrap file
*
* This file is read by WordPress to generate the plugin information in the plugin
* admin area. This file also includes all of the dependencies used by the plugin,
* registers the activation and deactivation functions, and defines a function
* that starts the plugin.
*
* @link https://mailchimp.com
* @since 1.0.0
* @package MailChimp_WooCommerce
*
* @wordpress-plugin
* Plugin Name: Mailchimp for WooCommerce
* Plugin URI: https://mailchimp.com/connect-your-store/
* Description: Connects WooCommerce to Mailchimp to sync your store data, send targeted campaigns to your customers, and sell more stuff.
* Version: 2.6.2
* Author: Mailchimp
* Author URI: https://mailchimp.com
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Text Domain: mailchimp-for-woocommerce
* Domain Path: /languages
* Requires at least: 4.9
* Tested up to: 5.9
* WC requires at least: 3.5
* WC tested up to: 6.3
*/
// If this file is called directly, abort.
if (!defined( 'WPINC')) {
die;
}
if (!isset($mailchimp_woocommerce_spl_autoloader) || $mailchimp_woocommerce_spl_autoloader === false) {
// require Action Scheduler
if( file_exists( "includes/vendor/action-scheduler/action-scheduler.php") ){
include_once "includes/vendor/action-scheduler/action-scheduler.php";
}
// bootstrapper
include_once "bootstrap.php";
}
register_activation_hook( __FILE__, 'activate_mailchimp_woocommerce');
// plugins loaded callback
add_action('plugins_loaded', 'mailchimp_on_all_plugins_loaded', 12);
//add_action('plugins_loaded', function() {
// // make this a one liner for testing and code separation
// include_once __DIR__.'/blocks/newsletter-test.php';
//}, 1);