@@ -86,15 +86,14 @@ protected function enqueueAssetsFromList($payload, AssetsEnqueue $assetsEnqueueH
86
86
if (vcvenv ('ENQUEUE_INNER_ASSETS ' )) {
87
87
return ;
88
88
}
89
+ $ globalsHelper = vchelper ('Globals ' );
89
90
VcvEnv::set ('ENQUEUE_INNER_ASSETS ' , true );
90
91
$ printJs = !isset ($ payload ['printJs ' ]) || $ payload ['printJs ' ];
91
92
$ enqueueList = $ assetsEnqueueHelper ->getEnqueueList ();
92
93
if (!empty ($ enqueueList )) {
93
94
foreach ($ enqueueList as $ sourceId ) {
94
- // @codingStandardsIgnoreStart
95
- global $ wp_query , $ wp_the_query ;
96
- $ backup = $ wp_query ;
97
- $ backupGlobal = $ wp_the_query ;
95
+ $ backup = $ globalsHelper ->get ('wp_query ' );
96
+ $ backupGlobal = $ globalsHelper ->get ('wp_the_query ' );
98
97
99
98
$ tempPostQuery = new WP_Query (
100
99
[
@@ -104,13 +103,13 @@ protected function enqueueAssetsFromList($payload, AssetsEnqueue $assetsEnqueueH
104
103
'posts_per_page ' => 1 ,
105
104
]
106
105
);
107
- $ wp_query = $ tempPostQuery ;
106
+ $ globalsHelper -> set ( ' wp_query ' , $ tempPostQuery) ;
108
107
if (is_null (self ::$ initialPostId )) {
109
108
self ::$ initialPostId = get_the_ID ();
110
109
}
111
- $ wp_the_query = $ tempPostQuery ;
112
- if ($ wp_query ->have_posts ()) {
113
- $ wp_query ->the_post ();
110
+ $ globalsHelper -> set ( ' wp_the_query ' , $ tempPostQuery) ;
111
+ if ($ tempPostQuery ->have_posts ()) {
112
+ $ tempPostQuery ->the_post ();
114
113
$ this ->callNonWordpressActionCallbacks ('wp_enqueue_scripts ' );
115
114
116
115
// queue of assets to be outputted later with print_late_styles() and do_action('wp_print_footer_script')
@@ -128,8 +127,8 @@ protected function enqueueAssetsFromList($payload, AssetsEnqueue $assetsEnqueueH
128
127
}
129
128
ob_end_clean ();
130
129
}
131
- $ wp_query = $ backup ;
132
- $ wp_the_query = $ backupGlobal; // fix wp_reset_query
130
+ $ globalsHelper -> set ( ' wp_query ' , $ backup) ;
131
+ $ globalsHelper -> set ( ' wp_the_query ' , $ backupGlobal);
133
132
// Remove from list only if printJs is true (footer side)
134
133
if ($ printJs ) {
135
134
$ assetsEnqueueHelper ->removeFromList ($ sourceId );
@@ -148,12 +147,14 @@ protected function enqueueAssetsFromList($payload, AssetsEnqueue $assetsEnqueueH
148
147
*/
149
148
protected function callNonWordpressActionCallbacks ($ action )
150
149
{
151
- global $ wp_filter, $ wp_current_filter ;
150
+ global $ wp_filter ;
152
151
// Run over actions sorted by priorities
153
152
$ actions = $ wp_filter [ $ action ]->callbacks ;
154
153
ksort ($ actions );
155
- // @codingStandardsIgnoreLine
156
- $ wp_current_filter [] = $ action ;
154
+ $ globalsHelper = vchelper ('Globals ' );
155
+ $ currentFilterCopy = $ globalsHelper ->get ('wp_current_filter ' );
156
+ $ currentFilterCopy [] = $ action ;
157
+ $ globalsHelper ->set ('wp_current_filter ' , $ currentFilterCopy );
157
158
foreach ($ actions as $ callbacks ) {
158
159
// Run over callbacks
159
160
foreach ($ callbacks as $ callback ) {
@@ -181,8 +182,9 @@ protected function callNonWordpressActionCallbacks($action)
181
182
call_user_func_array ($ callback ['function ' ], ['' ]);
182
183
}
183
184
}
184
- // @codingStandardsIgnoreLine
185
- array_pop ($ wp_current_filter );
185
+ $ currentFilterCopy = $ globalsHelper ->get ('wp_current_filter ' );
186
+ array_pop ($ currentFilterCopy );
187
+ $ globalsHelper ->set ('wp_current_filter ' , $ currentFilterCopy );
186
188
}
187
189
188
190
protected function enqueueVcvAssets ($ sourceIds )
@@ -200,16 +202,15 @@ protected function enqueueNoscript()
200
202
201
203
protected function setCustomWpScripts ()
202
204
{
203
- // @codingStandardsIgnoreStart
204
205
global $ wp_scripts ;
205
206
$ newScripts = new VcwbWpScripts ();
206
207
if (is_object ($ wp_scripts )) {
207
208
foreach (get_object_vars ($ wp_scripts ) as $ key => $ value ) {
208
209
$ newScripts ->{$ key } = $ value ;
209
210
}
210
211
}
211
- $ wp_scripts = $ newScripts ;
212
- // @codingStandardsIgnoreEnd
212
+ $ globalsHelper = vchelper ( ' Globals ' ) ;
213
+ $ globalsHelper -> set ( ' wp_scripts ' , $ newScripts );
213
214
}
214
215
215
216
/**
@@ -221,12 +222,9 @@ protected function enqueueAssetsVendorListener($sourceIds)
221
222
return ;
222
223
}
223
224
224
- // @codingStandardsIgnoreStart
225
- global $ wp_query ;
226
225
if (is_null (self ::$ initialPostId )) {
227
226
self ::$ initialPostId = get_the_ID ();
228
227
}
229
- // @codingStandardsIgnoreEnd
230
228
231
229
$ sourceIds = array_unique ($ sourceIds );
232
230
$ this ->enqueueAssetsBySourceList ($ sourceIds );
0 commit comments