-
Notifications
You must be signed in to change notification settings - Fork 146
/
class-coblocks.php
226 lines (206 loc) · 7.62 KB
/
class-coblocks.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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
<?php
/**
* Plugin Name: CoBlocks
* Description: CoBlocks is a suite of professional <strong>page building content blocks</strong> for the WordPress Gutenberg block editor. Our blocks are hyper-focused on empowering makers to build beautifully rich pages in WordPress.
* Author: GoDaddy
* Author URI: https://www.godaddy.com
* Version: 3.1.13
* Text Domain: coblocks
* Domain Path: /languages
* Tested up to: 6.7
* Requires at least: 6.3
*
* CoBlocks is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* any later version.
*
* You should have received a copy of the GNU General Public License
* along with CoBlocks. If not, see <http://www.gnu.org/licenses/>.
*
* @package CoBlocks
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
define( 'COBLOCKS_VERSION', '3.1.13' );
define( 'COBLOCKS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
define( 'COBLOCKS_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
define( 'COBLOCKS_PLUGIN_FILE', __FILE__ );
define( 'COBLOCKS_PLUGIN_BASE', plugin_basename( __FILE__ ) );
define( 'COBLOCKS_REVIEW_URL', 'https://wordpress.org/support/plugin/coblocks/reviews/?filter=5' );
define( 'COBLOCKS_API_NAMESPACE', 'coblocks' );
if ( ! class_exists( 'CoBlocks' ) ) :
/**
* Main CoBlocks Class.
*
* @since 1.0.0
*/
final class CoBlocks {
/**
* This plugin's instance.
*
* @var CoBlocks
* @since 1.0.0
*/
private static $instance;
/**
* Main CoBlocks Instance.
*
* Insures that only one instance of CoBlocks exists in memory at any one
* time. Also prevents needing to define globals all over the place.
*
* @since 1.0.0
* @static
* @return object|CoBlocks The one true CoBlocks
*/
public static function instance() {
if ( ! isset( self::$instance ) && ! ( self::$instance instanceof CoBlocks ) ) {
self::$instance = new CoBlocks();
self::$instance->init();
self::$instance->includes();
}
return self::$instance;
}
/**
* Throw error on object clone.
*
* The whole idea of the singleton design pattern is that there is a single
* object therefore, we don't want the object to be cloned.
*
* @since 1.0.0
* @access protected
* @return void
*/
public function __clone() {
// Cloning instances of the class is forbidden.
_doing_it_wrong( __FUNCTION__, esc_html__( 'Something went wrong.', 'coblocks' ), '1.0' );
}
/**
* Disable unserializing of the class.
*
* @since 1.0.0
* @access protected
* @return void
*/
public function __wakeup() {
// Unserializing instances of the class is forbidden.
_doing_it_wrong( __FUNCTION__, esc_html__( 'Something went wrong.', 'coblocks' ), '1.0' );
}
/**
* Include required files.
*
* @access private
* @since 1.0.0
* @return void
*/
private function includes() {
// Traits.
require_once COBLOCKS_PLUGIN_DIR . 'includes/traits/trait-coblocks-singleton.php';
require_once COBLOCKS_PLUGIN_DIR . 'includes/class-block-patterns.php';
require_once COBLOCKS_PLUGIN_DIR . 'includes/class-coblocks-block-assets.php';
require_once COBLOCKS_PLUGIN_DIR . 'includes/class-coblocks-register-blocks.php';
require_once COBLOCKS_PLUGIN_DIR . 'includes/class-coblocks-generated-styles.php';
require_once COBLOCKS_PLUGIN_DIR . 'includes/class-coblocks-body-classes.php';
require_once COBLOCKS_PLUGIN_DIR . 'includes/class-coblocks-font-loader.php';
require_once COBLOCKS_PLUGIN_DIR . 'includes/class-coblocks-post-meta.php';
require_once COBLOCKS_PLUGIN_DIR . 'includes/class-coblocks-google-map-block.php';
require_once COBLOCKS_PLUGIN_DIR . 'includes/class-coblocks-accordion-ie-support.php';
require_once COBLOCKS_PLUGIN_DIR . 'includes/class-coblocks-settings.php';
require_once COBLOCKS_PLUGIN_DIR . 'includes/class-coblocks-labs.php';
require_once COBLOCKS_PLUGIN_DIR . 'includes/get-dynamic-blocks.php';
require_once COBLOCKS_PLUGIN_DIR . 'includes/ical-parser/class-coblocks-event.php';
require_once COBLOCKS_PLUGIN_DIR . 'includes/ical-parser/class-coblocks-ical.php';
require_once COBLOCKS_PLUGIN_DIR . 'includes/class-coblocks-site-design.php';
require_once COBLOCKS_PLUGIN_DIR . 'includes/class-coblocks-site-content.php';
// Require CoBlocks custom filters.
require_once COBLOCKS_PLUGIN_DIR . 'src/components/gutter-control/gutter-wrapper.php';
require_once COBLOCKS_PLUGIN_DIR . 'src/components/form-label-colors/label-color-wrapper.php';
// Forced Block Migration Processor.
require_once COBLOCKS_PLUGIN_DIR . 'includes/block-migrate/loader.php';
if ( is_admin() ) {
require_once COBLOCKS_PLUGIN_DIR . 'src/extensions/layout-selector/index.php';
require_once COBLOCKS_PLUGIN_DIR . 'includes/admin/class-coblocks-plugin-deactivation.php';
}
if ( is_admin() || ( defined( 'WP_CLI' ) && WP_CLI ) ) {
require_once COBLOCKS_PLUGIN_DIR . 'includes/admin/class-coblocks-action-links.php';
require_once COBLOCKS_PLUGIN_DIR . 'includes/admin/class-coblocks-install.php';
require_once COBLOCKS_PLUGIN_DIR . 'includes/admin/class-coblocks-crop-settings.php';
}
// StylesLoader.
require_once COBLOCKS_PLUGIN_DIR . 'includes/Dependencies/GoDaddy/Styles/StylesLoader.php';
GoDaddy\WordPress\Plugins\CoBlocks\Dependencies\GoDaddy\Styles\StylesLoader::getInstance()->setBasePath( COBLOCKS_PLUGIN_DIR . 'includes/Dependencies/GoDaddy/Styles/' );
GoDaddy\WordPress\Plugins\CoBlocks\Dependencies\GoDaddy\Styles\StylesLoader::getInstance()->setBaseUrl( COBLOCKS_PLUGIN_URL . 'includes/Dependencies/GoDaddy/Styles/' );
add_action( 'plugins_loaded', array( GoDaddy\WordPress\Plugins\CoBlocks\Dependencies\GoDaddy\Styles\StylesLoader::getInstance(), 'boot' ) );
}
/**
* Load actions
*
* @return void
*/
private function init() {
add_action( 'plugins_loaded', array( $this, 'load_textdomain' ), 99 );
add_action( 'enqueue_block_editor_assets', array( $this, 'block_localization' ) );
}
/**
* Returns URL to the asset path.
*
* @param string $path Any extra directories needed.
*/
public function asset_source( $path = null ) {
return COBLOCKS_PLUGIN_URL . trailingslashit( path_join( 'dist', $path ) );
}
/**
* Loads the plugin language files.
*
* @access public
* @since 1.0.0
* @return void
*/
public function load_textdomain() {
load_plugin_textdomain( 'coblocks', false, basename( COBLOCKS_PLUGIN_DIR ) . '/languages' );
}
/**
* Enqueue localization data for our blocks.
*
* @access public
*/
public function block_localization() {
if ( function_exists( 'wp_set_script_translations' ) ) {
wp_set_script_translations( 'coblocks-editor', 'coblocks', COBLOCKS_PLUGIN_DIR . '/languages' );
}
}
/**
* Is an AMP endpoint.
*
* @return bool Whether the current response will be AMP.
*/
public function is_amp() {
return function_exists( 'is_amp_endpoint' ) && is_amp_endpoint();
}
}
endif;
/**
* The main function for that returns CoBlocks
*
* The main function responsible for returning the one true CoBlocks
* Instance to functions everywhere.
*
* Use this function like you would a global variable, except without needing
* to declare the global.
*
* Example: <?php $coblocks = CoBlocks(); ?>
*
* @since 1.0.0
* @return object|CoBlocks The one true CoBlocks Instance.
*/
function coblocks() {
return CoBlocks::instance();
}
// Get the plugin running. Load on plugins_loaded action to avoid issue on multisite.
if ( function_exists( 'is_multisite' ) && is_multisite() ) {
add_action( 'plugins_loaded', 'coblocks', 90 );
} else {
coblocks();
}