Breaking: #63846 - FormEngine refactoring
See forge#63846
Description
FormEngine is the core code structure that renders a record view in the backend. Basically everything that is displayed if elements from page or list module are edited is done by this code.
The main implementation was done thirteen years ago and was never touched on a deep code structure level until now. The according patches were huge and move the whole code to a new level. Stuff like that can not be done without impact on extensions that use this code.
Impact
TCA changes
- Keys
_PADDING
,_VALIGN
andDISTANCE
ofTCA
have been removed and have no effect anymore.['a Table'] ['columns'] ['a Field'] ['config'] ['wizards'] - Key
TCA
has been dropped and has no effect anymore.['a Table'] ['ctrl'] ['main Palette']
TSconfig changes
- Key
mod.
has been dropped and has no effect anymore.web_ layout. tt_ content. field Order - Key
TCEFORM.
has been dropped and has no effect anymore.a Table. a Field. link Title To Self
Code level
Methods and properties from FormEngine are not available anymore. Classes like Inline
are gone.
New structures like a factory for elements and container have been introduced.
While not too many extensions in the wild hook or code with FormEngine, those that do will probably throw
fatal errors after upgrade. The hook get
has been removed altogether.
Changed user functions and hooks
- TCA: If format of type
none
is set touser
, the configured userFunc no longer gets an instance ofForm
as parent object, but an instance ofEngine None
.Element - TCA: Wizards configured as
user
now receive a dummyFunc Form
object with empty properties instead of the real instance.Engine - Hooks no longer get the key
form_
. Usetype type
instead. - Hook
get
has been dropped and no longer called.Single Field Class
Breaking interface changes
- The type hint to
Form
asEngine $p
has been removed on theObj Database
. This hook is no longer given an instance ofFile Icons Hook Interface Form
.Engine - Method
init
of() Inline
has been removed. Classes that implement this interface will no longer getElement Hook Interface init
called.()
Affected installations
For most instances, the overall impact is rather low or they are not affected at all. Some very rarely used TCA and TSconfig options have been dropped, those will do no harm. Instances are usually only affected if loaded extensions do fancy stuff with FormEngine with hooks or other related code.
TYPO3 CMS 7 installations with extensions using or hooking into FormEngine and its related classes are
likely to break. TCA elements of type user may break. Instances using these parts will quickly show
fatal errors at testing. It may help to search for Form
or t3lib_
below the typo3conf/
directory to find affected instances.
Migration
Adapt the extension code. The majority of methods were for internal core usage only, but still public. Please use the existing API to solve needs on FormEngine.