-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathRoot_Loader.php
287 lines (239 loc) · 6.87 KB
/
Root_Loader.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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
<?php
/**
* File: Root_Loader.php
*
* @package W3TC
*/
namespace W3TC;
/**
* Class: Root_Loader
*
* phpcs:disable PSR2.Classes.PropertyDeclaration.Underscore
*/
class Root_Loader {
/**
* Enabled Plugins that has been run
*
* @var W3_Plugin[]
*/
private $_loaded_plugins = array();
/**
* Enabled extensions that has been run
*
* @var W3_Plugin[]
*/
private $_loaded_extensions = array();
/**
* Constructor for the Root_Loader class.
*
* Initializes and loads the required plugins based on the current configuration.
*
* @return void
*/
public function __construct() {
$c = Dispatcher::config();
$plugins = array();
$plugins[] = new Generic_Plugin();
if ( $c->get_boolean( 'dbcache.enabled' ) ) {
$plugins[] = new DbCache_Plugin();
}
if ( $c->getf_boolean( 'objectcache.enabled' ) ) {
$plugins[] = new ObjectCache_Plugin();
}
if ( $c->get_boolean( 'pgcache.enabled' ) ) {
$plugins[] = new PgCache_Plugin();
}
if ( $c->get_boolean( 'cdn.enabled' ) ) {
$plugins[] = new Cdn_Plugin();
}
if ( $c->get_boolean( 'cdnfsd.enabled' ) ) {
$plugins[] = new Cdnfsd_Plugin();
}
if ( $c->get_boolean( 'lazyload.enabled' ) ) {
$plugins[] = new UserExperience_LazyLoad_Plugin();
}
if ( $c->get_boolean( 'browsercache.enabled' ) ) {
$plugins[] = new BrowserCache_Plugin();
}
if ( $c->get_boolean( 'minify.enabled' ) ) {
$plugins[] = new Minify_Plugin();
}
if ( $c->get_boolean( 'varnish.enabled' ) ) {
$plugins[] = new Varnish_Plugin();
}
if ( $c->get_boolean( 'stats.enabled' ) ) {
$plugins[] = new UsageStatistics_Plugin();
}
if ( is_admin() ) {
$plugins[] = new Generic_Plugin_Admin();
$plugins[] = new Generic_Plugin_AdminNotices();
$plugins[] = new Generic_Plugin_Survey();
$plugins[] = new BrowserCache_Plugin_Admin();
$plugins[] = new DbCache_Plugin_Admin();
$plugins[] = new UserExperience_Plugin_Admin();
$plugins[] = new ObjectCache_Plugin_Admin();
$plugins[] = new PgCache_Plugin_Admin();
$plugins[] = new Minify_Plugin_Admin();
$plugins[] = new Generic_WidgetSpreadTheWord_Plugin();
$plugins[] = new SystemOpCache_Plugin_Admin();
$plugins[] = new Cdn_Plugin_Admin();
$plugins[] = new Cdnfsd_Plugin_Admin();
$cdn_engine = $c->get_string( 'cdn.engine' );
$plugins[] = new PageSpeed_Api();
$plugins[] = new PageSpeed_Page();
$plugins[] = new PageSpeed_Widget();
$plugins[] = new Generic_Plugin_AdminCompatibility();
$plugins[] = new Licensing_Plugin_Admin();
if ( $c->get_boolean( 'pgcache.enabled' ) || $c->get_boolean( 'varnish.enabled' ) ) {
$plugins[] = new Generic_Plugin_AdminRowActions();
}
$plugins[] = new Extensions_Plugin_Admin();
$plugins[] = new UsageStatistics_Plugin_Admin();
$plugins[] = new SetupGuide_Plugin_Admin();
$plugins[] = new FeatureShowcase_Plugin_Admin();
} else {
if ( $c->get_boolean( 'jquerymigrate.disabled' ) ) {
$plugins[] = new UserExperience_Plugin_Jquery();
}
}
$this->_loaded_plugins = $plugins;
register_activation_hook(
W3TC_FILE,
array( $this, 'activate' )
);
register_deactivation_hook(
W3TC_FILE,
array( $this, 'deactivate' )
);
}
/**
* Runs all loaded plugins and initializes extensions.
*
* Executes the `on_w3tc_plugins_loaded` method if it exists in `$GLOBALS['wpdb']`.
*
* @return void
*/
public function run() {
foreach ( $this->_loaded_plugins as $plugin ) {
$plugin->run();
}
if ( method_exists( $GLOBALS['wpdb'], 'on_w3tc_plugins_loaded' ) ) {
$o = $GLOBALS['wpdb'];
$o->on_w3tc_plugins_loaded();
}
$this->run_extensions();
}
/**
* Activates the plugin, performing necessary setup actions.
*
* @param bool $network_wide Whether the activation is for a network-wide installation.
*
* @return void
*/
public function activate( $network_wide ) {
Root_AdminActivation::activate( $network_wide );
}
/**
* Deactivates the plugin, performing necessary cleanup actions.
*
* @return void
*/
public function deactivate() {
Root_AdminActivation::deactivate();
}
/**
* Loads and runs the active extensions for both frontend and admin environments.
*
* Includes extension files and triggers extension-related actions.
*
* @return void
*/
public function run_extensions() {
$c = Dispatcher::config();
$extensions = $c->get_array( 'extensions.active' );
$frontend = $c->get_array( 'extensions.active_frontend' );
foreach ( $frontend as $extension => $nothing ) {
if ( isset( $extensions[ $extension ] ) ) {
$path = $extensions[ $extension ];
$filename = W3TC_EXTENSION_DIR . '/' . str_replace( '..', '', trim( $path, '/' ) );
if ( file_exists( $filename ) ) {
include_once $filename;
}
}
}
if ( is_admin() ) {
foreach ( $extensions as $extension => $path ) {
$filename = W3TC_EXTENSION_DIR . '/' .
str_replace( '..', '', trim( $path, '/' ) );
if ( file_exists( $filename ) ) {
include_once $filename;
}
}
}
w3tc_do_action( 'wp_loaded' );
do_action( 'w3tc_extension_load' );
if ( is_admin() ) {
do_action( 'w3tc_extension_load_admin' );
}
// Hide Image Service converted images.
$settings = $c->get_array( 'imageservice' );
$visibility = isset( $settings['visibility'] ) ? $settings['visibility'] : 'never';
if ( 'never' === $visibility || ( 'extension' === $visibility && ! isset( $extensions['imageservice'] ) ) ) {
add_action(
'pre_get_posts',
array( $this, 'w3tc_modify_query_obj' )
);
add_filter(
'ajax_query_attachments_args',
array( $this, 'w3tc_filter_ajax_args' )
);
}
}
/**
* Modifies the main query to exclude Image Service converted images from the media library.
*
* @param \WP_Query $query The main query object.
*
* @return void
*/
public function w3tc_modify_query_obj( $query ) {
if ( ! is_admin() || ! $query->is_main_query() ) {
return;
}
$screen = get_current_screen();
if ( ! $screen || 'upload' !== $screen->id || 'attachment' !== $screen->post_type ) {
return;
}
// Get the existing meta query array, add ours, and then save it.
$meta_query = (array) $query->get( 'meta_query' );
$meta_query[] = array(
'key' => 'w3tc_imageservice_file',
'compare' => 'NOT EXISTS',
);
$query->set( 'meta_query', $meta_query );
}
/**
* Filters AJAX attachment query arguments to exclude Image Service converted images.
*
* @param array $args The query arguments for AJAX attachments.
*
* @return array Modified query arguments.
*/
public function w3tc_filter_ajax_args( $args ) {
if ( ! is_admin() ) {
return;
}
$args['meta_query'] = array( // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_meta_query
array(
'key' => 'w3tc_imageservice_file',
'compare' => 'NOT EXISTS',
),
);
return $args;
}
}
global $w3tc_root;
if ( is_null( $w3tc_root ) ) {
$w3tc_root = new \W3TC\Root_Loader();
$w3tc_root->run();
}