Skip to content

Commit

Permalink
TASK: Deprecate addQueryString for legacy fluid module viewhelpers
Browse files Browse the repository at this point in the history
- `<neos:uri.module />`
- `<neos:link.module />`
  • Loading branch information
mhsdesign committed May 22, 2024
1 parent 742b59d commit 139021f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Neos.Neos/Classes/ViewHelpers/Link/ModuleViewHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,14 +79,14 @@ public function initializeArguments()
$this->registerArgument(
'addQueryString',
'boolean',
'If set, the current query parameters will be kept in the URI',
'Deprecated with Neos 9. If set, the current query parameters will be kept in the URI',
false,
false
);
$this->registerArgument(
'argumentsToBeExcludedFromQueryString',
'array',
'arguments to be removed from the URI. Only active if $addQueryString = true',
'Deprecated with Neos 9. arguments to be removed from the URI. Only active if $addQueryString = true',
false,
[]
);
Expand Down
4 changes: 2 additions & 2 deletions Neos.Neos/Classes/ViewHelpers/Uri/ModuleViewHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,14 @@ public function initializeArguments()
$this->registerArgument(
'addQueryString',
'string',
'If set, the current query parameters will be kept in the URI',
'Deprecated with Neos 9. If set, the current query parameters will be kept in the URI',
false,
false
);
$this->registerArgument(
'argumentsToBeExcludedFromQueryString',
'string',
'arguments to be removed from the URI. Only active if $addQueryString = true',
'Deprecated with Neos 9. arguments to be removed from the URI. Only active if $addQueryString = true',
false,
[]
);
Expand Down

0 comments on commit 139021f

Please sign in to comment.