@@ -79,15 +79,16 @@ class Ajax_Action extends Action {
79
79
/**
80
80
* Constructor.
81
81
*
82
- * @param string $action Ajax action name.
83
- * @param string $prefix Prefix for the action name.
84
- * @param bool $public Whether the action is public or not.
85
- * @param 'GET'|'POST'|'REQ' $method Method to fetch the variable. GET, POST, or REQ.
86
- * @param bool|string $nonce String defines the query var for nonce, true checks the default vars, false disables nonce check.
87
- * @param null|string|array<string,string|array<int,string>> $cap Capability required to perform the action.
88
- * @param array<string,mixed> $vars Variables to fetch.
89
- * @param array<int,mixed> $params Parameters to pass to the callback. Will be resolved by the container.
90
- * @param int $priority Hook priority.
82
+ * @param string $action Ajax action name.
83
+ * @param string $prefix Prefix for the action name.
84
+ * @param bool $public Whether the action is public or not.
85
+ * @param 'GET'|'POST'|'REQ' $method Method to fetch the variable. GET, POST, or REQ.
86
+ * @param bool|string $nonce String defines the query var for nonce, true checks the default vars, false disables nonce check.
87
+ * @param null|string|array<string,string|array<int,string>> $cap Capability required to perform the action.
88
+ * @param array<string,mixed> $vars Variables to fetch.
89
+ * @param array<int,mixed> $params Parameters to pass to the callback. Will be resolved by the container.
90
+ * @param int $priority Hook priority.
91
+ * @param null|Closure|string|array{0:class-string,1:string} $conditional Conditional callback.
91
92
*/
92
93
public function __construct (
93
94
string $ action ,
@@ -99,6 +100,7 @@ public function __construct(
99
100
array $ vars = array (),
100
101
array $ params = array (),
101
102
int $ priority = 10 ,
103
+ null |Closure |string |array $ conditional = null ,
102
104
) {
103
105
$ this ->action = $ action ;
104
106
$ this ->prefix = $ prefix ;
@@ -112,7 +114,7 @@ public function __construct(
112
114
tag: '%s_%s_%s ' ,
113
115
priority:$ priority ,
114
116
context: self ::CTX_AJAX ,
115
- conditional: ' __return_true ' ,
117
+ conditional: $ conditional ,
116
118
modifiers: array ( '%s ' , \rtrim ( $ prefix , '_ ' ), $ action ),
117
119
invoke: self ::INV_PROXIED ,
118
120
args: 0 ,
0 commit comments