Files
medicalalert-web-reloaded/wp/wp-content/plugins/makewebbetter-hubspot-for-woocommerce/makewebbetter-hubspot-for-woocommerce.php
2024-10-24 12:57:16 -04:00

324 lines
12 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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://makewebbetter.com/
* @since 1.0.0
* @package makewebbetter-hubspot-for-woocommerce
*
* @wordpress-plugin
* Plugin Name: MWB HubSpot for WooCommerce
* Plugin URI: https://wordpress.org/plugins/makewebbetter-hubspot-for-woocommerce
* Description: Integrate WooCommerce with HubSpots free CRM, abandoned cart tracking, email marketing, marketing automation, analytics & more.
* Version: 1.5.8
* Requires at least: 4.4.0
* Tested up to: 6.6.2
* WC requires at least: 3.5.0
* WC tested up to: 9.3.3
* Author: MakeWebBetter
* Author URI: http://www.makewebbetter.com/?utm_source=MWB-HubspotFree-backend&utm_medium=MWB-backend&utm_campaign=backend
* License: GPLv3 or later
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt
* Text Domain: makewebbetter-hubspot-for-woocommerce
* Domain Path: /languages
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
$hubwoo_pro_activated = false;
$hubwoo_pro_flag = 0;
$activated_plugins = get_option( 'active_plugins', array() );
$plugin_dependencies = array( 'hubspot-woocommerce-integration/hubspot-woocommerce-integration.php', 'hubspot-woocommerce-integration-starter/hubspot-woocommerce-integration-starter.php', 'hubspot-woocommerce-integration-complimentary/hubspot-woocommerce-integration-complimetary.php', 'hubspot-woocommerce-integration-pro/hubspot-woocommerce-integration-pro.php' );
/**
* Checking if WooCommerce is active
* and other woocommerce integration versions.
*/
if ( function_exists( 'is_multisite' ) && is_multisite() ) {
include_once ABSPATH . 'wp-admin/includes/plugin.php';
if ( is_plugin_active( 'woocommerce/woocommerce.php' ) ) {
$hubwoo_pro_activated = true;
$hubwoo_pro_flag = 1;
}
}
if ( in_array( 'woocommerce/woocommerce.php', $activated_plugins, true ) ) {
$hubwoo_pro_activated = true;
$hubwoo_pro_flag = 1;
}
if ( $hubwoo_pro_activated && $hubwoo_pro_flag ) {
foreach ( $plugin_dependencies as $dependency ) {
if ( in_array( $dependency, $activated_plugins, true ) ) {
$hubwoo_pro_activated = false;
$hubwoo_pro_flag = -1;
break;
}
}
}
if ( $hubwoo_pro_activated && $hubwoo_pro_flag ) {
if ( ! function_exists( 'activate_hubwoo_pro' ) ) {
/**
* The code that runs during plugin activation.
*/
function activate_hubwoo_pro() {
require_once plugin_dir_path( __FILE__ ) . 'includes/class-hubwoo-activator.php';
Hubwoo_Activator::activate();
}
}
if ( ! function_exists( 'deactivate_hubwoo_pro' ) ) {
/**
* The code that runs during plugin deactivation.
*/
function deactivate_hubwoo_pro() {
require_once plugin_dir_path( __FILE__ ) . 'includes/class-hubwoo-deactivator.php';
Hubwoo_Deactivator::deactivate();
}
}
register_activation_hook( __FILE__, 'activate_hubwoo_pro' );
register_deactivation_hook( __FILE__, 'deactivate_hubwoo_pro' );
/**
* The core plugin class that is used to define internationalization,
* admin-specific hooks, and public-facing site hooks.
*/
require plugin_dir_path( __FILE__ ) . 'includes/class-hubwoo.php';
/**
* Define HubWoo constants.
*
* @since 1.0.0
*/
function hubwoo_pro_define_constants() {
hubwoo_pro_define( 'HUBWOO_ABSPATH', dirname( __FILE__ ) . '/' );
hubwoo_pro_define( 'HUBWOO_URL', plugin_dir_url( __FILE__ ) );
hubwoo_pro_define( 'HUBWOO_VERSION', '1.5.8' );
hubwoo_pro_define( 'HUBWOO_PLUGINS_PATH', plugin_dir_path( __DIR__ ) );
hubwoo_pro_define( 'HUBWOO_CLIENT_ID', '769fa3e6-79b1-412d-b69c-6b8242b2c62a' );
hubwoo_pro_define( 'HUBWOO_SECRET_ID', '2893dd41-017e-4208-962b-12f7495d16b0' );
}
/**
* Adding custom setting links at the plugin activation list.
*
* @param array $links_array array containing the links to plugin.
* @param string $plugin_file_name plugin file name.
* @return array
*/
function hubwoo_custom_settings_at_plugin_tab( $links_array, $plugin_file_name ) {
if ( strpos( $plugin_file_name, basename( __FILE__ ) ) ) {
$links_array[] = '<a href="https://makewebbetter.com/hubspot-onboarding-services/?utm_source=MWB-HubspotFree-backend&utm_medium=MWB-backend&utm_campaign=backend" target="_blank"><img src="' . HUBWOO_URL . 'admin/images/Demo.svg" style="vertical-align: middle;display: inline-block;width: 15px;max-width: 100%;margin: 0 5px;"></i>' . esc_html__( 'Onboarding Services', 'makewebbetter-hubspot-for-woocommerce' ) . '</a>';
$links_array[] = '<a href="https://docs.makewebbetter.com/hubspot-integration-for-woocommerce/?utm_source=MWB-HubspotFree-backend&utm_medium=MWB-backend&utm_campaign=backend" target="_blank"><img src="' . HUBWOO_URL . 'admin/images/Documentation.svg" style="vertical-align: middle;display: inline-block;width: 15px;max-width: 100%;margin: 0 5px;"></i>' . esc_html__( 'Docs', 'makewebbetter-hubspot-for-woocommerce' ) . '</a>';
$links_array[] = '<a href="https://support.makewebbetter.com/hubspot-integrations/?utm_source=MWB-HubspotFree-backend&utm_medium=MWB-backend&utm_campaign=backend" target="_blank"><img src="' . HUBWOO_URL . 'admin/images/Documentation.svg" style="vertical-align: middle;display: inline-block;width: 15px;max-width: 100%;margin: 0 5px;"></i>' . esc_html__( 'KB', 'makewebbetter-hubspot-for-woocommerce' ) . '</a>';
}
return $links_array;
}
add_filter( 'plugin_row_meta', 'hubwoo_custom_settings_at_plugin_tab', 10, 2 );
/**
* Define constant if not already set.
*
* @param string $name name for the constant.
* @param string $value value for the constant.
* @since 1.0.0
*/
function hubwoo_pro_define( $name, $value ) {
if ( ! defined( $name ) ) {
define( $name, $value );
}
}
/**
* Setting Page Link.
*
* @param array $actions actions for the plugin.
* @param string $plugin_file name of the plugin.
* @return array
* @since 1.0.0
*/
function hubwoo_pro_admin_settings( $actions, $plugin_file ) {
static $plugin;
if ( ! isset( $plugin ) ) {
$plugin = plugin_basename( __FILE__ );
}
if ( $plugin === $plugin_file ) {
$settings = array(
'settings' => '<a href="' . admin_url( 'admin.php?page=hubwoo' ) . '">' . esc_html__( 'Settings', 'makewebbetter-hubspot-for-woocommerce' ) . '</a>',
);
$actions = array_merge( $settings, $actions );
$premium_support = array(
'premium_support' => '<a href="https://makewebbetter.com/product/hubspot-for-woocommerce/?utm_source=MWB-HubspotFree-backend&utm_medium=MWB-backend&utm_campaign=backend">' . esc_html__( 'Get Premium Support', 'makewebbetter-hubspot-for-woocommerce' ) . '</a>',
);
$actions = array_merge( $premium_support, $actions );
}
return $actions;
}
// add link for settings.
add_filter( 'plugin_action_links', 'hubwoo_pro_admin_settings', 10, 2 );
/**
* Auto Redirection to settings page after plugin activation
*
* @since 1.0.0
* @param string $plugin name of the plugin.
* @link https://makewebbetter.com/
*/
function hubwoo_pro_activation_redirect( $plugin ) {
if ( WC()->is_rest_api_request() ) {
return;
}
if ( plugin_basename( __FILE__ ) === $plugin ) {
wp_safe_redirect( admin_url( 'admin.php?page=hubwoo&hubwoo_tab=hubwoo-overview&hubwoo_key=connection-setup' ) );
exit();
}
}
// redirect to settings page as soon as plugin is activated.
add_action( 'activated_plugin', 'hubwoo_pro_activation_redirect' );
/**
* Begins execution of the plugin.
*
* Since everything within the plugin is registered via hooks,
* then kicking off the plugin from this point in the file does
* not affect the page life cycle.
*
* @since 1.0.0
*/
function run_hubwoo_pro() {
// define contants if not defined..
hubwoo_pro_define_constants();
$hub_woo = new Hubwoo();
$hub_woo->run();
$GLOBALS['hubwoo'] = $hub_woo;
}
run_hubwoo_pro();
} elseif ( ! $hubwoo_pro_activated && 0 === $hubwoo_pro_flag ) {
add_action( 'admin_init', 'hubwoo_pro_plugin_deactivate' );
/**
* Call Admin notices
*
* @link https://www.makewebbetter.com/
*/
function hubwoo_pro_plugin_deactivate() {
deactivate_plugins( plugin_basename( __FILE__ ) );
add_action( 'admin_notices', 'hubwoo_pro_plugin_error_notice' );
}
/**
* Show warning message if woocommerce is not install
*
* @since 1.0.0
* @link https://www.makewebbetter.com/
*/
function hubwoo_pro_plugin_error_notice() { ?>
<div class="error notice is-dismissible">
<p><?php esc_html_e( 'WooCommerce is not activated. Please activate WooCommerce first to install MWB HubSpot for WooCommerce', 'makewebbetter-hubspot-for-woocommerce' ); ?></p>
</div>
<style>
#message{
display:none;
}
</style>
<?php
}
} elseif ( ! $hubwoo_pro_activated && -1 === $hubwoo_pro_flag ) {
/**
* Show warning message if any other HubSpot WooCommerce Integration version is activated
*
* @since 1.0.0
* @link https://www.makewebbetter.com/
*/
function hubwoo_pro_plugin_basic_error_notice() {
?>
<div class="error notice is-dismissible">
<p><?php esc_html_e( 'Oops! You tried activating the MWB HubSpot for WooCommerce without deactivating the another version of the integration created by MakewebBetter. Kindly deactivate the other version of HubSpot WooCommerce Integration and then try again.', 'makewebbetter-hubspot-for-woocommerce' ); ?></p>
</div>
<style>
#message{display:none;}
</style>
<?php
}
add_action( 'admin_init', 'hubwoo_pro_plugin_deactivate_dueto_basicversion' );
/**
* Call Admin notices
*
* @link https://www.makewebbetter.com/
*/
function hubwoo_pro_plugin_deactivate_dueto_basicversion() {
deactivate_plugins( plugin_basename( __FILE__ ) );
add_action( 'admin_notices', 'hubwoo_pro_plugin_basic_error_notice' );
}
}
register_uninstall_hook( __FILE__, 'uninstall_hubwoo_pro' );
if ( ! function_exists( 'uninstall_hubwoo_pro' ) ) {
/**
* The code that runs during uninstalling the plugin.
*/
function uninstall_hubwoo_pro() {
if ( file_exists( WC_LOG_DIR . 'hubspot-for-woocommerce-logs.log' ) ) {
unlink( WC_LOG_DIR . 'hubspot-for-woocommerce-logs.log' );
}
}
}
// For the checkout block compatibility
add_action( 'before_woocommerce_init', function() {
if ( class_exists( '\Automattic\WooCommerce\Utilities\FeaturesUtil' ) ) {
\Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'cart_checkout_blocks', __FILE__, false );
}
} );
// Declare support for HPOS features
if ( in_array( 'hubspot-woocommerce-hpos-compatibility/hubspot-woocommerce-hpos-compatibility.php', $activated_plugins, true ) ) {
add_action( 'before_woocommerce_init', function () {
if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) {
\Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true );
}
} );
} else {
add_action( 'before_woocommerce_init', function () {
if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) {
\Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, false );
}
} );
}