Project

General

Profile

Actions

Bug #103162

closed

The f:form ViewHelper can not handle arrays as object attribute anymore

Added by Philipp Wrann 9 months ago. Updated about 1 month ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Fluid
Start date:
2024-02-20
Due date:
% Done:

100%

Estimated time:
TYPO3 Version:
12
PHP Version:
8.2
Tags:
Complexity:
Is Regression:
Sprint Focus:

Description

Before adding strict types in V12 the <f:form> ViewHelper could be utilized with arrays as object attribute values.

<f:form objectName="q" object="{array}">

Since V12 this will throw a TypeError because the method signature of the AbstractFormViewHelper has changed and does only allow ?object parameters, which is not consistent with the viewhelper argument type (mixed), that does not implicitly say, that arrays are not to be used.

I personally often utilize the <f:form> viewhelper with arrays to handle simple search forms, because it will produce correct argument names for the form fields. If i would instead use a simple html <form> i would have to make sure to name all of my fields correctly.

IMO the parameter type should be changed from ?object to object|array|null

Unions are possible since PHP 8.0


Related issues 1 (0 open1 closed)

Has duplicate TYPO3 Core - Bug #105146: TYPO3\CMS\Fluid\ViewHelpers\Form\AbstractFormViewHelper::renderHiddenIdentityField(): Argument #1 ($object) must be of type ?object, array givenClosed2024-09-26

Actions
Actions #1

Updated by Philipp Wrann 9 months ago

The bug has been introduced with this commit:
https://github.com/TYPO3/typo3/commit/528b90fea50622784dfdd2d651a6486e960b7460

https://github.com/TYPO3/typo3/commit/528b90fea50622784dfdd2d651a6486e960b7460#diff-c237bc764df37d84f5d4c6bd6821ea8d9b90bd809ef4110a1d4c5e6ac15b7607L80

IMO it is a bad practice to change things, that are not related to the current task, the method signature should have not been changed with the task described in the commit.

Please change the parameter type to the union described in the issue, otherwise i will need to create proxy ArrayObject classes foreach plugin where i used this very common pattern.

Actions #2

Updated by Florian Rival about 2 months ago ยท Edited

Same problem for me, I cannot use array with formViewHelper <f:form> since TYPO3 V12 and PHP 8.2

In my use case, data are coming from a query, it could be a common use case.

Any plan to get it work again ?

Actions #3

Updated by Garvin Hicking about 2 months ago

There was a dupe where it is addressed:

https://review.typo3.org/c/Packages/TYPO3.CMS/+/86367

Please vote on it to get it addressed.

Actions #4

Updated by Garvin Hicking about 2 months ago

  • Has duplicate Bug #105146: TYPO3\CMS\Fluid\ViewHelpers\Form\AbstractFormViewHelper::renderHiddenIdentityField(): Argument #1 ($object) must be of type ?object, array given added
Actions #5

Updated by Gerrit Code Review about 1 month ago

  • Status changed from New to Under Review

Patch set 2 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/86367

Actions #6

Updated by Gerrit Code Review about 1 month ago

Patch set 3 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/86367

Actions #7

Updated by Gerrit Code Review about 1 month ago

Patch set 1 for branch 12.4 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/86476

Actions #8

Updated by Garvin Hicking about 1 month ago

  • Status changed from Under Review to Resolved
  • % Done changed from 0 to 100
Actions #9

Updated by Benni Mack about 1 month ago

  • Status changed from Resolved to Closed
Actions

Also available in: Atom PDF