forked from wp-graphql/wp-graphql-woocommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wp-graphql-woocommerce.php
146 lines (133 loc) · 3.5 KB
/
wp-graphql-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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<?php
/**
* Plugin Name: WPGraphQL WooCommerce (WooGraphQL)
* Plugin URI: https://github.com/wp-graphql/wp-graphql-woocommerce
* Description: Adds Woocommerce Functionality to WPGraphQL schema.
* Version: 0.11.2
* Author: kidunot89
* Author URI: https://axistaylor.com
* Text Domain: wp-graphql-woocommerce
* Domain Path: /languages
* License: GPL-3
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
* WC requires at least: 4.8.0
* WC tested up to: 6.6.1
* WPGraphQL requires at least: 1.6.1+
* WPGraphQL-JWT-Authentication requires at least: 0.5.0+
*
* @package WPGraphQL\WooCommerce
* @author kidunot89
* @license GPL-3
*/
namespace WPGraphQL\WooCommerce;
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
/**
* Setups WPGraphQL WooCommerce constants
*/
function constants() {
// Plugin version.
if ( ! defined( 'WPGRAPHQL_WOOCOMMERCE_VERSION' ) ) {
define( 'WPGRAPHQL_WOOCOMMERCE_VERSION', '0.11.2' );
}
// Plugin Folder Path.
if ( ! defined( 'WPGRAPHQL_WOOCOMMERCE_PLUGIN_DIR' ) ) {
define( 'WPGRAPHQL_WOOCOMMERCE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
}
// Plugin Folder URL.
if ( ! defined( 'WPGRAPHQL_WOOCOMMERCE_PLUGIN_URL' ) ) {
define( 'WPGRAPHQL_WOOCOMMERCE_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
}
// Plugin Root File.
if ( ! defined( 'WPGRAPHQL_WOOCOMMERCE_PLUGIN_FILE' ) ) {
define( 'WPGRAPHQL_WOOCOMMERCE_PLUGIN_FILE', __FILE__ );
}
// Whether to autoload the files or not.
if ( ! defined( 'WPGRAPHQL_WOOCOMMERCE_AUTOLOAD' ) ) {
define( 'WPGRAPHQL_WOOCOMMERCE_AUTOLOAD', true );
}
}
/**
* Returns path to plugin root directory.
*
* @return string
*/
function get_plugin_directory() {
return trailingslashit( WPGRAPHQL_WOOCOMMERCE_PLUGIN_DIR );
}
/**
* Returns path to plugin "includes" directory.
*
* @return string
*/
function get_includes_directory() {
return trailingslashit( WPGRAPHQL_WOOCOMMERCE_PLUGIN_DIR ) . 'includes/';
}
/**
* Returns path to plugin "vendor" directory.
*
* @return string
*/
function get_vendor_directory() {
return trailingslashit( WPGRAPHQL_WOOCOMMERCE_PLUGIN_DIR ) . 'vendor/';
}
/**
* Returns url to a plugin file.
*
* @param string $filepath Relative path to plugin file.
*
* @return string
*/
function plugin_file_url( $filepath ) {
return plugins_url( $filepath, __FILE__ );
}
/**
* Checks if WPGraphQL WooCommerce required plugins are installed and activated
*
* @param array $deps Unloaded dependencies list.
*
* @return bool
*/
function dependencies_not_ready( &$deps = [] ) {
if ( ! class_exists( '\WPGraphQL' ) ) {
$deps[] = 'WPGraphQL';
}
if ( ! class_exists( '\WooCommerce' ) ) {
$deps[] = 'WooCommerce';
}
return $deps;
}
/**
* Initializes WPGraphQL WooCommerce
*/
function init() {
if ( empty( dependencies_not_ready( $not_ready ) ) ) {
require_once get_includes_directory() . 'class-wp-graphql-woocommerce.php';
return WP_GraphQL_WooCommerce::instance();
}
foreach ( $not_ready as $dep ) {
add_action(
'admin_notices',
function() use ( $dep ) {
?>
<div class="error notice">
<p>
<?php
printf(
/* translators: dependency not ready error message */
esc_html__( '%1$s must be active for "WPGraphQL WooCommerce (WooGraphQL)" to work', 'wp-graphql-woocommerce' ),
esc_html( $dep )
);
?>
</p>
</div>
<?php
}
);
}
}
add_action( 'graphql_init', 'WPGraphQL\WooCommerce\init' );
// Load constants.
constants();
// Load access functions.
require_once get_plugin_directory() . 'access-functions.php';