PluginProbe ʕ •ᴥ•ʔ
Constant Contact + WooCommerce / 2.0.3
Constant Contact + WooCommerce v2.0.3
trunk 1.0.0 1.0.1 1.0.2 1.1.0 1.2.0 1.3.0 1.3.1 1.3.2 1.3.3 1.4.0 1.4.1 2.0.0 2.0.1 2.0.2 2.0.3 2.1.0 2.1.1 2.1.2 2.2.0 2.2.1 2.2.2 2.3.0 2.3.1 2.3.2 2.4.0 2.4.1 2.4.2 2.4.3
constant-contact-woocommerce / plugin.php
constant-contact-woocommerce Last commit date
app 3 years ago src 3 years ago vendor 3 years ago README.txt 3 years ago composer.json 3 years ago composer.lock 5 years ago docker_tag 3 years ago output.log 3 years ago plugin.php 3 years ago uninstall.php 5 years ago
plugin.php
36 lines
1 <?php
2 /**
3 * Constant Contact + WooCommerce
4 *
5 * @since 2019-02-15
6 * @author Constant Contact <https://www.constantcontact.com/>
7 * @package cc-woo
8 *
9 * @wordpress-plugin
10 * Plugin Name: Constant Contact + WooCommerce
11 * Description: Add products to your emails and sync your contacts.
12 * Plugin URI: https://github.com/WebDevStudios/constant-contact-woocommerce
13 * Version: 2.0.3
14 * Author: Constant Contact
15 * Author URI: https://www.constantcontact.com/
16 * Text Domain: cc-woo
17 * WC requires at least: 3.6.0
18 * WC tested up to: 6.8.2
19 * Requires PHP: 7.2
20 * License: GPL-3.0+
21 * License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
22 */
23
24 // Autoload things.
25 $cc_woo_autoloader = dirname( __FILE__ ) . '/vendor/autoload.php';
26
27 if ( ! is_readable( $cc_woo_autoloader ) ) {
28 /* Translators: Placeholder is the current directory. */
29 throw new \Exception( sprintf( __( 'Please run `composer install` in the plugin folder "%s" and try activating this plugin again.', 'cc-woo' ), dirname( __FILE__ ) ) );
30 }
31
32 require_once $cc_woo_autoloader;
33
34 $cc_woo_plugin = new \WebDevStudios\CCForWoo\Plugin( __FILE__ );
35 $cc_woo_plugin->run();
36