-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbootstrap.php
More file actions
83 lines (74 loc) · 3.27 KB
/
bootstrap.php
File metadata and controls
83 lines (74 loc) · 3.27 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?php
/**
* The DWS WordPress Framework WooCommerce bootstrap file.
*
* @since 1.0.0
* @version 1.0.0
* @package DeepWebSolutions\WP-Framework\WooCommerce
* @author Deep Web Solutions GmbH
* @copyright 2020 Deep Web Solutions GmbH
* @license GPL-3.0-or-later
*
* @noinspection PhpMissingReturnTypeInspection
*
* @wordpress-plugin
* Plugin Name: DWS WordPress Framework WooCommerce
* Description: A set of related classes to help kickstart the development of a plugin for WooCommerce.
* Version: 1.0.0
* Requires at least: 5.5
* Requires PHP: 7.4
* Author: Deep Web Solutions GmbH
* Author URI: https://www.deep-web-solutions.com
* License: GPL-3.0+
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt
* Text Domain: dws-wp-framework-woocommerce
* Domain Path: /src/languages
* WC requires at least: 4.5
* WC tested up to: 5.0
*/
namespace DeepWebSolutions\Framework;
if ( ! \defined( 'ABSPATH' ) ) {
return; // Since this file is autoloaded by Composer, 'exit' breaks all external dev tools.
}
// Start by autoloading dependencies and defining a few functions for running the bootstrapper.
// The conditional check makes the whole thing compatible with Composer-based WP management.
\is_file( __DIR__ . '/vendor/autoload.php' ) && require_once __DIR__ . '/vendor/autoload.php';
// Load module-specific bootstrapping functions.
require_once __DIR__ . '/bootstrap-functions.php';
// Define settings constants
\define( __NAMESPACE__ . '\DWS_WP_FRAMEWORK_WOOCOMMERCE_NAME', dws_wp_framework_get_whitelabel_name() . ': Framework WooCommerce' );
\define( __NAMESPACE__ . '\DWS_WP_FRAMEWORK_WOOCOMMERCE_VERSION', '1.0.0' );
\define( __NAMESPACE__ . '\DWS_WP_FRAMEWORK_WOOCOMMERCE_BASE_PATH', __DIR__ );
// Define minimum environment requirements.
\define( __NAMESPACE__ . '\DWS_WP_FRAMEWORK_WOOCOMMERCE_MIN_PHP', '7.4' );
\define( __NAMESPACE__ . '\DWS_WP_FRAMEWORK_WOOCOMMERCE_MIN_WP', '5.5' );
// Bootstrap the settings (maybe)!
if ( dws_wp_framework_check_php_wp_requirements_met( dws_wp_framework_get_woocommerce_min_php(), dws_wp_framework_get_woocommerce_min_wp() ) ) {
$dws_woocommerce_init_function = function() {
\define(
__NAMESPACE__ . '\DWS_WP_FRAMEWORK_WOOCOMMERCE_INIT',
\apply_filters(
'dws_wp_framework/woocommerce/init_status',
dws_wp_framework_get_settings_init_status(),
__NAMESPACE__
)
);
};
if ( \did_action( 'plugins_loaded' ) ) {
\call_user_func( $dws_woocommerce_init_function );
} else {
\add_action( 'plugins_loaded', $dws_woocommerce_init_function, PHP_INT_MIN + 600 );
}
} else {
\define( __NAMESPACE__ . '\DWS_WP_FRAMEWORK_WOOCOMMERCE_INIT', false );
dws_wp_framework_output_requirements_error( dws_wp_framework_get_woocommerce_name(), dws_wp_framework_get_woocommerce_version(), dws_wp_framework_get_woocommerce_min_php(), dws_wp_framework_get_woocommerce_min_wp() );
// Stop the foundations from initializing if the WooCommerce module failed.
\add_filter(
'dws_wp_framework/foundations/init_status',
function( bool $init, string $namespace ) {
return ( __NAMESPACE__ === $namespace ) ? false : $init;
},
10,
2
);
}