Skip to content

Commit 5513e8c

Browse files
committed
fix: Added conditional to ajax action
1 parent d4a9ecf commit 5513e8c

File tree

2 files changed

+20
-18
lines changed

2 files changed

+20
-18
lines changed

src/Decorators/Ajax_Action.php

+12-10
Original file line numberDiff line numberDiff line change
@@ -79,15 +79,16 @@ class Ajax_Action extends Action {
7979
/**
8080
* Constructor.
8181
*
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.
9192
*/
9293
public function __construct(
9394
string $action,
@@ -99,6 +100,7 @@ public function __construct(
99100
array $vars = array(),
100101
array $params = array(),
101102
int $priority = 10,
103+
null|Closure|string|array $conditional = null,
102104
) {
103105
$this->action = $action;
104106
$this->prefix = $prefix;
@@ -112,7 +114,7 @@ public function __construct(
112114
tag: '%s_%s_%s',
113115
priority:$priority,
114116
context: self::CTX_AJAX,
115-
conditional: '__return_true',
117+
conditional: $conditional,
116118
modifiers: array( '%s', \rtrim( $prefix, '_' ), $action ),
117119
invoke: self::INV_PROXIED,
118120
args: 0,

src/Decorators/Handler.php

+8-8
Original file line numberDiff line numberDiff line change
@@ -73,14 +73,14 @@ class Handler extends Hook implements Can_Handle {
7373
/**
7474
* Constructor.
7575
*
76-
* @param string $tag Hook tag.
77-
* @param Closure|string|int|array{class-string,string} $priority Hook priority.
78-
* @param string $container Container ID.
79-
* @param int $context Hook context.
80-
* @param null|Closure|string|array{class-string,string} $conditional Conditional callback.
81-
* @param array<int,string>|string|false $modifiers Values to replace in the tag name.
82-
* @param string $strategy Initialization strategy.
83-
* @param bool $hookable Is the handler hookable.
76+
* @param string $tag Hook tag.
77+
* @param Closure|string|int|array{0:class-string,1:string} $priority Hook priority.
78+
* @param string $container Container ID.
79+
* @param int $context Hook context.
80+
* @param null|Closure|string|array{0:class-string,1:string} $conditional Conditional callback.
81+
* @param array<int,string>|string|false $modifiers Values to replace in the tag name.
82+
* @param string $strategy Initialization strategy.
83+
* @param bool $hookable Is the handler hookable.
8484
*/
8585
public function __construct(
8686
?string $tag = null,

0 commit comments

Comments
 (0)