@@ -42,9 +42,9 @@ class Ajax_Action extends Action {
42
42
/**
43
43
* Nonce query var.
44
44
*
45
- * @var bool|string
45
+ * @var bool|string|array<string,string>
46
46
*/
47
- protected bool |string $ nonce ;
47
+ protected bool |string | array $ nonce ;
48
48
49
49
/**
50
50
* Capability required to perform the action.
@@ -90,7 +90,7 @@ class Ajax_Action extends Action {
90
90
* @param null|string $prefix Prefix for the action name.
91
91
* @param bool $public Whether the action is public or not.
92
92
* @param 'GET'|'POST'|'REQ' $method Method to fetch the variable. GET, POST, or REQ.
93
- * @param bool|string $nonce String defines the query var for nonce, true checks the default vars, false disables nonce check .
93
+ * @param bool|string|array<string,string> $nonce Nonce query var, or false to disable nonce check, or query var => action keypair .
94
94
* @param null|string|array<string,string|array<int,string>> $cap Capability required to perform the action.
95
95
* @param array<string,mixed> $vars Variables to fetch.
96
96
* @param array<int,mixed> $params Parameters to pass to the callback. Will be resolved by the container.
@@ -102,7 +102,7 @@ public function __construct(
102
102
?string $ prefix = null ,
103
103
bool $ public = true ,
104
104
string $ method = self ::AJAX_REQ ,
105
- bool |string $ nonce = false ,
105
+ bool |string | array $ nonce = false ,
106
106
null |string |array $ cap = null ,
107
107
array $ vars = array (),
108
108
array $ params = array (),
@@ -262,9 +262,9 @@ private function fire_guard_cb( string $type ): void {
262
262
}
263
263
264
264
private function nonce_check (): bool {
265
- $ query_arg = \is_string ( $ this -> nonce ) ? $ this ->nonce : false ;
265
+ [ $ arg , $ action ] = $ this ->get_nonce_args () ;
266
266
267
- return \check_ajax_referer ( "{ $ this -> prefix } _ { $ this -> action }" , $ query_arg , false );
267
+ return \check_ajax_referer ( $ action , $ arg , false );
268
268
}
269
269
270
270
private function cap_check (): bool {
@@ -280,4 +280,22 @@ private function cap_check(): bool {
280
280
281
281
return true ;
282
282
}
283
+
284
+ /**
285
+ * Get the nonce arguments.
286
+ *
287
+ * @return array{0: string|false, 1: string}
288
+ */
289
+ private function get_nonce_args (): array {
290
+ $ query_arg = match ( true ) {
291
+ \is_array ( $ this ->nonce ) => \key ( $ this ->nonce ),
292
+ \is_string ( $ this ->nonce ) => $ this ->nonce ,
293
+ default => false ,
294
+ };
295
+ $ action = \is_array ( $ this ->nonce )
296
+ ? \current ( $ this ->nonce )
297
+ : "{$ this ->prefix }_ {$ this ->action }" ;
298
+
299
+ return array ( $ query_arg , $ action );
300
+ }
283
301
}
0 commit comments